.celebrating-section {
    background: linear-gradient(135deg, #e8f1f5 0%, #d4e7f0 50%, #c5dce8 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.celebrating-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.celebrating-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 62, 122, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.celebrating-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.celebrating-content {
    padding-right: 40px;
}

.celebrating-content h2 {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e31837 0%, #2c3e7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.celebrating-intro {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
    line-height: 1.7;
}

.celebrating-text {
    font-size: 0.95rem;
    color: #2c2c2c;
    line-height: 1.75;
    margin-bottom: 20px;
}

.celebrating-link {
    font-size: 0.95rem;
    color: #2c2c2c;
    line-height: 1.75;
    margin-bottom: 35px;
}

.celebrating-link a {
    color: #e31837;
    text-decoration: underline;
    font-weight: 600;
}

.celebrating-link a:hover {
    color: #c41530;
}

.celebrating-logo {
    height: 70px;
    width: auto;
    margin-top: 10px;
}

.celebrating-image {
    position: relative;
}

.celebrating-image img {
    width: 100%;
    height: auto;
    display: block;
}

.celebrating-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e31837 0%, #c41530 100%);
    color: #fff;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.celebrating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff1744 0%, #e31837 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.celebrating-btn:hover::before {
    left: 0;
}

.celebrating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(227, 24, 55, 0.5);
}

.celebrating-arrow {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #e31837;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 100;
}

.celebrating-arrow:hover {
    background-color: #c41530;
}

@media (max-width: 1024px) {
    .celebrating-section {
        padding: 80px 0;
    }
    
    .celebrating-container {
        padding: 0 40px;
        gap: 60px;
    }
    
    .celebrating-content h2 {
        font-size: 2.8rem;
    }
    
    .celebrating-arrow {
        width: 50px;
        height: 50px;
        left: -25px;
    }
}

@media (max-width: 768px) {
    .celebrating-section {
        padding: 60px 0;
    }
    
    .celebrating-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .celebrating-content {
        padding-right: 0;
    }

    .celebrating-content h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .celebrating-intro {
        font-size: 1rem;
    }
    
    .celebrating-text,
    .celebrating-link {
        font-size: 0.9rem;
    }

    .celebrating-image {
        text-align: center;
    }
    
    .celebrating-logo {
        height: 60px;
    }

    .celebrating-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    .celebrating-arrow {
        width: 45px;
        height: 45px;
        left: -22px;
    }
}

@media (max-width: 480px) {
    .celebrating-section {
        padding: 50px 0;
    }
    
    .celebrating-container {
        padding: 0 20px;
        gap: 35px;
    }

    .celebrating-content h2 {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 24px;
        line-height: 1.2;
    }
    
    .celebrating-intro {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .celebrating-text,
    .celebrating-link {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .celebrating-logo {
        height: 50px;
    }

    .celebrating-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .celebrating-arrow {
        width: 40px;
        height: 40px;
        left: -20px;
    }
}

.land-acknowledgement-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.land-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.land-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.land-content p {
    font-size: 0.95rem;
    color: #2c2c2c;
    line-height: 1.75;
    margin-bottom: 20px;
}

.land-link {
    display: inline-block;
    color: #e31837;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.land-link:hover {
    opacity: 0.8;
}

.land-image {
    position: relative;
}

.land-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .land-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .land-content h2 {
        font-size: 1.5rem;
    }
}
