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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 24px;
    color: #666;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-accept {
    background: #7fb069;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #6fa055;
}

.btn-reject {
    background: transparent;
    color: #666;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-reject:hover {
    color: #333;
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-content .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-content .logo img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.success-content .logo span {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.success-content p {
    margin-bottom: 16px;
    color: #666;
    line-height: 1.6;
}

.btn-back {
    background: #7fb069;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 8px;
}

.btn-back:hover {
    background: #6fa055;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.logo img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover {
    color: #7fb069;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

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

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #333;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #6fa2d4;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 16px;
}

.btn-primary:hover {
    background: #5a8bc0;
}

/* Focus Areas Section */
.focus-areas {
    padding: 80px 0;
    background: white;
}

.focus-areas h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #333;
}

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

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.focus-item {
    text-align: center;
    padding: 40px 20px;
}



.focus-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.focus-item p {
    color: #666;
    line-height: 1.6;
}

/* Guidelines Section */
.guidelines {
    padding: 80px 0;
    background: #f8f9fa;
}

.guidelines h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.guidelines-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #666;
    line-height: 1.6;
}

/* Future Section */
.future {
    padding: 80px 0;
    background: white;
}

.future h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.future-card {
    padding: 32px;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    background: white;
}

.future-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.future-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Competency Section */
.competency {
    padding: 80px 0;
    background: #f8f9fa;
}

.competency h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.competency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.competency-item {
    text-align: center;
}

.competency-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
}

.competency-item:nth-child(odd) .competency-number {
    background: #6fa2d4;
}

.competency-item:nth-child(even) .competency-number {
    background: #7fb069;
}

.competency-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.competency-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

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

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

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #666;
    line-height: 1.6;
}

.no-spam {
    font-style: italic;
    margin-bottom: 40px !important;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 16px;
    margin-right: 12px;
    margin-top: 2px;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.opening-hours {
    margin-top: 32px;
}

.opening-hours h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.opening-hours p {
    font-size: 14px;
    margin-bottom: 4px;
    color: #666;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #6fa2d4;
}

.form-group input::placeholder {
    color: #999;
}

.btn-submit {
    width: 100%;
    background: #6fa2d4;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #5a8bc0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    margin-right: 12px;

}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    margin-bottom: 24px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 16px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright p {
    font-size: 14px;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
        padding-top: 60px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .competency-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 32px 24px;
    }
    
    .success-content {
        margin: 20px;
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .focus-areas h2,
    .guidelines h2,
    .future h2,
    .competency h2,
    .contact-info h2 {
        font-size: 28px;
    }
    
    .competency-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus states for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #6fa2d4;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}