/* Spezifische Styles für die "Über uns" Seite */

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 170%;
    background-position: 70% 5%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    display: none;
}

/* Who We Are Section */
.who-we-are {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -15px;
    position: relative;
    z-index: 2;
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
}

.who-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    border-radius: 2px;
}

.who-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.who-image {
    text-align: center;
}

.team-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    border-radius: 20px;
}

.image-source {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.9rem;
}

.image-source a {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.image-source a:hover {
    color: #27ae60;
}

/* Mission Section mit Video */
.mission-section {
    padding: 100px 0;
    background: white;
}

/* Mission Text für Mobile - auf Desktop verstecken */
.mission-text-mobile {
    display: none;
}

.mission-video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mission-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.video-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mission-wheel {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.wheel {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.wheel-item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.wheel-item:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

.wheel-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.wheel-item span {
    font-size: 0.9rem;
    text-align: center;
}

.wheel-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.wheel-item:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.wheel-item:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    transition: all 0.3s ease;
}

/* Success Section */
.success-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.success-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
}

.success-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
}

.success-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.success-text.expanded {
    max-height: none;
}

.read-more-btn {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.read-more-btn.expanded {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.read-more-btn.expanded:hover {
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

@media (max-width: 768px) {
    .success-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .success-card {
        padding: 20px;
    }
    
    .success-card h3 {
        font-size: 1.2rem;
    }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    transform: translateX(-50%);
}

/* Mobile Timeline - Horizontal */
@media (max-width: 768px) {
    .timeline {
        display: flex;
        overflow-x: auto;
        padding: 20px 0;
        max-width: 100%;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex: 0 0 280px;
        margin-right: 20px;
        margin-bottom: 0;
        scroll-snap-align: start;
    }
    
    .timeline-content {
        margin: 0;
        text-align: left;
        position: relative;
    }
    
    .timeline-content::before {
        display: none;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #2ecc71;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Read More Functionality */
.timeline-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: relative;
}

.timeline-text.expanded {
    max-height: none;
}

.timeline-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.timeline-text.expanded::after {
    opacity: 0;
}

.read-more-btn {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.read-more-btn.expanded {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.read-more-btn.expanded:hover {
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-item p {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

.contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.contact-form .submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* Instagram Button Styles */
.instagram-cta {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #833ab4;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        white-space: nowrap;
    }

    .who-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-video {
        height: 300px;
    }

    .mission-wheel {
        flex-direction: column;
        text-align: center;
    }

    .wheel-container {
        width: 300px;
        height: 300px;
    }

    .wheel-item {
        width: 80px;
        height: 80px;
    }

    .wheel-item i {
        font-size: 1.5rem;
    }

    .wheel-item span {
        font-size: 0.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* Timeline Mobile Improvements */
    .timeline-section {
        padding: 50px 0;
    }
    
    .timeline-item {
        margin-bottom: 0;
    }
    
    .timeline-content {
        padding: 20px;
        margin: 0;
    }
    
    .timeline-date {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-text {
        max-height: 0;
        font-size: 0.9rem;
    }
    
    .read-more-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        width: 98%;
        padding: 20px 10px;
        top: 70%;
    }

    .who-text h2 {
        font-size: 2rem;
    }

    .mission-video {
        height: 250px;
    }

    .video-content h3 {
        font-size: 2rem;
    }

    .wheel-container {
        width: 250px;
        height: 250px;
    }

    .wheel-item {
        width: 60px;
        height: 60px;
    }

    .wheel-item i {
        font-size: 1.2rem;
    }

    .wheel-item span {
        font-size: 0.7rem;
    }
}

/* Mobile Complete Redesign - Modern & Clean */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        height: 70vh;
        padding: 0;
        position: relative;
    }
    
    .hero-content {
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 3;
        width: 95%;
        max-width: 600px;
        padding: 25px 15px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 25px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        line-height: 1.2;
        font-weight: 900;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        line-height: 1.4;
        font-weight: 400;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 40px;
        color: #2c3e50;
        position: relative;
        font-weight: 800;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #2ecc71, #27ae60);
        border-radius: 3px;
    }
    
    /* Who We Are Section Mobile */
    .who-we-are {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .who-we-are-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .who-we-are-text {
        text-align: center;
    }
    
    .who-we-are-text h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
        color: #2c3e50;
        font-weight: 800;
    }
    
    .who-we-are-text p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #666;
        margin-bottom: 30px;
    }
    
    .who-we-are-image {
        text-align: center;
    }
    
    .who-we-are-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    /* Mission Section Mobile */
    .mission-section {
        padding: 80px 0;
        background: white;
    }
    
    /* Verstecke Video auf Mobile */
    .mission-video-container {
        display: none;
    }
    
    /* Zeige Text auf Mobile */
    .mission-text-mobile {
        display: block;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
    }
    
    .mission-text-mobile h3 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .mission-text-mobile p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    /* Success Section Mobile */
    .success-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .success-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .success-card {
        background: white;
        padding: 35px 25px;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: 3px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .success-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(45deg, #2ecc71, #27ae60);
    }
    
    .success-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border-color: #2ecc71;
    }
    
    .success-year {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2ecc71;
        margin-bottom: 15px;
        display: inline-block;
        background: linear-gradient(45deg, #2ecc71, #27ae60);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
    }
    
    .success-card h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        color: #2c3e50;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .success-text {
        color: #666;
        line-height: 1.7;
        margin-bottom: 25px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .success-text.expanded {
        max-height: none;
    }
    
    .read-more-btn {
        background: linear-gradient(45deg, #2ecc71, #27ae60);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .read-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
    }
    
    .read-more-btn.expanded {
        background: linear-gradient(45deg, #e74c3c, #c0392b);
    }
    
    .read-more-btn.expanded:hover {
        box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .contact-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    .contact-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }
    
    .contact-content h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: white;
        font-weight: 800;
    }
    
    .contact-content p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.95;
        line-height: 1.7;
    }
    
    .contact-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px 30px;
        border-radius: 25px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-group {
        margin-bottom: 25px;
        text-align: left;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: white;
        font-size: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }
    
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: white;
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .submit-btn {
        background: white;
        color: #2ecc71;
        padding: 15px 30px;
        border: none;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s ease;
        width: 100%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .submit-btn:hover::before {
        left: 100%;
    }
    
    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
} 