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

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

/* Header */
.header {
    background: #2c3e50;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.logo-icon {
    margin-right: 8px;
    font-size: 1.3rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: #2c3e50;
    padding: 100px 3% 60px;
    color: white;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    order: 1;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.hero-text {
    order: 2;
    padding-left: 2rem;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.cta-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

/* News Section */
.news-section {
    padding: 80px 3%;
    background: #f8f9fa;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
    font-weight: 700;
}

.news-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.news-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.news-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Results Section */
.results-section {
    padding: 80px 3%;
    background: #2c3e50;
    color: white;
}

.results-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.results-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.result-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.result-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Projects Section */
.projects-section {
    padding: 80px 3%;
    background: white;
}

.projects-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
    font-weight: 700;
}

.projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 0;
}

.project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.project-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.projects-cta {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 80px 3%;
    background: #2c3e50;
    color: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
    font-weight: 600;
    line-height: 1.3;
}

.value-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 80px 3%;
    background: #f8f9fa;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.3;
    font-weight: 700;
}

.about-text h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #333;
    font-weight: 600;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.about-text ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.about-text li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 3%;
    background: #2c3e50;
    color: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input {
    padding: 18px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #333;
}

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

.contact-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.submit-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #e55a2e;
}

.contact-links {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-links a:hover {
    color: #ff6b35;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    padding: 0;
    border: 1px solid #ddd;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.cookie-content {
    padding: 25px;
}

.cookie-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

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

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

.cookie-accept {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-accept:hover {
    background: #e55a2e;
}

.cookie-reject {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-reject:hover {
    background: #ff6b35;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav {
        padding: 1rem 2%;
    }
    
    .hero,
    .news-section,
    .results-section,
    .projects-section,
    .values-section,
    .about-section,
    .contact-section {
        padding-left: 2%;
        padding-right: 2%;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: 1;
    }

    .hero-text {
        order: 2;
        padding-left: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-grid,
    .results-grid,
    .projects-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-popup {
        left: 20px;
        right: 20px;
        max-width: none;
        bottom: 20px;
    }

    .result-number {
        font-size: 3rem;
    }

    .hero-image img {
        height: 300px;
    }

    .about-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text h2 {
        font-size: 1.1rem;
    }

    .news-section h2,
    .results-section h2,
    .projects-section h2,
    .values-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-content {
        padding: 20px;
    }

    .nav {
        padding: 1rem;
    }

    .hero,
    .news-section,
    .results-section,
    .projects-section,
    .values-section,
    .about-section,
    .contact-section {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .news-card,
    .result-item,
    .project-card,
    .value-card {
        padding: 2rem;
    }

    .hero-image img {
        height: 250px;
    }

    .about-image img {
        height: 300px;
    }

    .result-number {
        font-size: 2.5rem;
    }

    .hero-text p,
    .news-card p,
    .result-item p,
    .project-card p,
    .value-card p,
    .about-text p {
        font-size: 0.9rem;
    }
}