* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    text-decoration: none;
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c5aa0;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3d73c4 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/hero.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: #fff;
    color: #2c5aa0;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Why Acandatur Section */
.why-acandatur {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-acandatur h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blue-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3d73c4 100%);
    padding: 60px 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-item {
    flex: 1;
    color: white;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    line-height: 1.6;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: #fff;
}

.results h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.results-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.result-item {
    background: #2c5aa0;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 350px;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-item p {
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.team-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.team-member p {
    line-height: 1.6;
    color: #666;
}

/* Partnership Section */
.partnership {
    padding: 80px 0;
    background: url('./images/partner.jpg') center/cover;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}


.partnership .container {
    position: relative;
    z-index: 2;
}

.partnership h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background: rgba(255,255,255,0.5);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step p {
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.address-block {
    line-height: 1.8;
    color: #666;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-wrapper input {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Noto Sans', sans-serif;
}

.contact-form-wrapper input:focus {
    outline: none;
    border-color: #2c5aa0;
}

.submit-button {
    background: #2c5aa0;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.submit-button:hover {
    background: #1e3c72;
}

.map-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container img {
    width: 100%;
    /* max-width: 400px; */
    border-radius: 10px;
}

/* Footer */
footer {
    background: #1e3c72;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 400px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content p {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept,
.cookie-decline {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #2c5aa0;
    color: white;
}

.cookie-accept:hover {
    background: #1e3c72;
}

.cookie-decline {
    background: #f0f0f0;
    color: #666;
}

.cookie-decline:hover {
    background: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .results-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .cookie-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .why-acandatur h2,
    .results h2,
    .team h2,
    .partnership h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .blue-section {
        padding: 40px 20px;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
}