* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #5b5c5e;
    --color-accent: #96c75c;
    --color-light: #effbf7;
    --color-white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(150, 199, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(91, 92, 94, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(91, 92, 94, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-accent);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: normal;
}

.main-nav {
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

.hero {
    padding: 4rem 20px;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: normal;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-dark);
    opacity: 0.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(91, 92, 94, 0.2);
    background: #ddd;
    min-height: 300px;
    object-fit: cover;
}

.services {
    padding: 4rem 20px;
    background: var(--color-white);
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(91, 92, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(150, 199, 92, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(150, 199, 92, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(91, 92, 94, 0.08) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20 Q 50 10, 80 20 T 100 20' stroke='%2396c75c' stroke-width='1' fill='none' opacity='0.1'/%3E%3Cpath d='M10 40 Q 40 30, 70 40 T 90 40' stroke='%2396c75c' stroke-width='1' fill='none' opacity='0.08'/%3E%3Cpath d='M30 60 Q 60 50, 90 60 T 100 60' stroke='%235b5c5e' stroke-width='1' fill='none' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.services .container {
    position: relative;
    z-index: 1;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
    font-weight: normal;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(150, 199, 92, 0.3);
    border-color: var(--color-accent);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: normal;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s, transform 0.3s;
    font-weight: 500;
}

.btn:hover {
    background: var(--color-dark);
    transform: scale(1.05);
}

.about {
    padding: 4rem 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(91, 92, 94, 0.2);
    background: #ddd;
    min-height: 300px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: normal;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-dark);
    opacity: 0.9;
}

.gallery {
    padding: 4rem 20px;
    background: var(--color-white);
    margin: 2rem 0;
    border-radius: 20px;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
    font-weight: normal;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(91, 92, 94, 0.2);
    background: #ddd;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.page-header {
    padding: 3rem 20px;
    text-align: center;
    background: var(--color-white);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: normal;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-dark);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 3rem 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: normal;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    opacity: 0.9;
}

.content-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(91, 92, 94, 0.2);
    background: #ddd;
    min-height: 300px;
    object-fit: cover;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--color-light);
    border-left: 4px solid var(--color-accent);
    border-radius: 5px;
    font-size: 1.1rem;
}

footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 20px 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-weight: normal;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 5px 15px rgba(91, 92, 94, 0.2);
        border-radius: 10px;
        padding: 1rem;
        display: none;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .hero {
        flex-direction: column;
        padding: 2rem 20px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .services h2,
    .gallery h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

.contact-section {
    padding: 3rem 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
    font-weight: normal;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(150, 199, 92, 0.2);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: normal;
}

.info-content p {
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
}

.info-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--color-dark);
    text-decoration: underline;
}

.map-container-large {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(91, 92, 94, 0.2);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(91, 92, 94, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--color-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-dark);
    background: var(--color-light);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(150, 199, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group label a {
    color: var(--color-accent);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(150, 199, 92, 0.3);
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container-large {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1rem;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }
}

.success-section {
    padding: 4rem 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(91, 92, 94, 0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-white);
    font-weight: bold;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-content h1 {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: normal;
}

.success-content h2 {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.success-content > p {
    font-size: 1.1rem;
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.success-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.info-box {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 10px;
    align-items: flex-start;
}

.info-box .info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-box h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.info-box p {
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.info-box a {
    color: var(--color-accent);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-accent);
}

.success-suggestions {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--color-light);
}

.success-suggestions h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.success-suggestions > p {
    color: var(--color-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.suggestion-card {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(150, 199, 92, 0.3);
    border-color: var(--color-accent);
}

.suggestion-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.suggestion-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: normal;
}

.suggestion-card p {
    font-size: 0.9rem;
    color: var(--color-dark);
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .success-content {
        padding: 2rem 1.5rem;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .success-content h2 {
        font-size: 1.2rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1.5rem 20px;
    box-shadow: 0 -5px 20px rgba(91, 92, 94, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    border-top: 3px solid var(--color-accent);
    display: block;
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hidden {
    display: none;
}

.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: 300px;
}

.cookie-banner-text p {
    color: var(--color-dark);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-banner-text a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--color-accent);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(150, 199, 92, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.cookie-btn-decline:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.cookie-btn-settings {
    background: var(--color-light);
    color: var(--color-dark);
    border: 2px solid var(--color-light);
}

.cookie-btn-settings:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 15px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner-text {
        min-width: auto;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .cookie-banner {
        padding: 1rem 10px;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

