* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #9BC69F;
    --accent-green: #A8C33B;
    --highlight-yellow: #F8FC6C;
    --gold: #D4AF37;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--black);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--black);
}

h2 {
    font-size: 2.5rem;
    color: var(--black);
}

h3 {
    font-size: 1.8rem;
    color: var(--gray-dark);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

header {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

.hero-banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.3);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.card-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background: var(--gray-light);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.icon {
    width: 60px;
    height: 60px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 1.5rem;
}

.icon-accent {
    stroke: var(--accent-green);
}

.icon-highlight {
    stroke: var(--highlight-yellow);
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    font-size: 1.15rem;
    line-height: 2;
}

.content-text p {
    margin-bottom: 2rem;
}

.features {
    background: var(--gray-light);
    padding: 4rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    margin-top: 1rem;
    color: var(--black);
}

.contact-section {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0;
}

.contact-section h2,
.contact-section h3,
.contact-section p {
    color: var(--white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.map-container {
    margin-top: 3rem;
    border: 3px solid var(--gold);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-text {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    * {
        max-width: 100%;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 0.75rem;
        max-width: 100%;
        width: 100%;
    }

    header {
        padding: 1rem 0;
    }

    nav {
        padding: 0 0.75rem;
        flex-wrap: wrap;
    }

    .logo {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        word-break: break-word;
    }

    .mobile-menu-toggle {
        font-size: 1.2rem;
        padding: 0.5rem;
    }

    .nav-menu {
        width: 100%;
        padding: 1.5rem 0.75rem;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .hero-banner {
        height: 60vh;
        min-height: 350px;
        padding: 0.5rem;
    }

    .hero-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .hero-content {
        padding: 0.75rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
        display: block;
        min-height: 44px;
        box-sizing: border-box;
    }

    h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .section {
        padding: 2rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 60px;
        height: 2px;
    }

    .card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .card-image {
        height: 200px;
        margin-bottom: 1rem;
    }

    .card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .grid {
        gap: 1.5rem;
    }

    .content-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .content-text h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .content-text h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .content-text ul,
    .content-text ol {
        margin-left: 1.25rem;
        margin-bottom: 1.5rem;
        padding-right: 0.5rem;
    }

    .content-text ul li,
    .content-text ol li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .content-text li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .contact-section {
        padding: 2rem 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .map-container {
        margin-top: 2rem;
    }

    .map-container {
        border-width: 2px;
    }

    .map-container iframe {
        height: 250px;
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-group input[type="submit"] {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        min-height: 44px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 44px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .luxury-divider {
        margin: 2rem 0;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    a, span, strong, em {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .content-text a {
        word-break: break-all;
    }

    button, .btn-primary, input[type="submit"] {
        max-width: 100%;
        word-wrap: break-word;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.luxury-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 3rem 0;
}

.gold-text {
    color: var(--gold);
}

.green-accent {
    color: var(--accent-green);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    border-top: 2px solid var(--gold);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    color: var(--white);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: var(--black);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
}

.cookie-btn:hover {
    background: transparent;
    color: var(--gold);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.cookie-btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .cookie-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .cookie-banner-content {
        gap: 1rem;
    }
}

