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

:root {
    --navy-blue: #0a2540;
    --orange: #e67e22;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--orange);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--navy-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-color: var(--navy-blue);
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d67118;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-blue);
}

/* About Section */
.about {
    background-color: var(--orange);
    padding: 80px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content.reverse {
    flex-direction: row-reverse;
    margin-bottom: 0;
}

.about-text {
    flex: 1;
    color: var(--white);
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Properties Section */
.properties {
    padding: 80px 0;
    background-color: var(--white);
}

.properties h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--navy-blue);
}

.properties-intro {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

.properties-images {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.properties-images img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.experience h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--navy-blue);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-item {
    text-align: left;
}

.experience-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.experience-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.experience-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.experience-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Why Section */
.why {
    padding: 80px 0;
    background-color: var(--white);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.why-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Strategy Section */
.strategy {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.strategy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.strategy-text {
    flex: 1;
}

.strategy-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.strategy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.strategy-image {
    flex: 1;
}

.strategy-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--navy-blue);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
    color: var(--white);
}

.contact-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.8;
}

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

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    border: none;
    border-radius: 4px;
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
}

.contact-form-wrapper .btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    padding: 40px 0 20px;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.contact-info li {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--navy-blue);
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--orange);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 10px 25px;
    font-size: 13px;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-content,
    .about-content,
    .why-content,
    .strategy-content,
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-content.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .about-text h2,
    .why-text h2,
    .strategy-text h2,
    .contact-text h2,
    .properties h2,
    .experience h2 {
        font-size: 28px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .properties-images {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 50px 0;
    }

    .about,
    .properties,
    .experience,
    .why,
    .strategy,
    .contact {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .about-text h2,
    .why-text h2,
    .strategy-text h2,
    .contact-text h2,
    .properties h2,
    .experience h2 {
        font-size: 24px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}