@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5b8a72;
    --primary-light: #7ba699;
    --primary-dark: #3d6b54;
    --secondary: #f5ebe0;
    --accent: #d4a574;
    --text-dark: #2c3e2d;
    --text-light: #5a6b5c;
    --white: #ffffff;
    --cream: #faf8f5;
    --shadow: 0 2px 15px rgba(91, 138, 114, 0.12);
    --shadow-lg: 0 8px 30px rgba(91, 138, 114, 0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 0.8rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}


.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 5px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: var(--primary-light);
    opacity: 0.08;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    color: var(--primary);
    font-size: 20px;
}

.hero-badge span {
    font-weight: 600;
    font-size: 13px;
}

section {
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.service-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    text-align: center;
}

.about-stats span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.about-stats small {
    font-size: 11px;
    opacity: 0.9;
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.about-feature i {
    color: var(--primary);
    font-size: 14px;
}

.process-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.process-section .section-title h2,
.process-section .section-title p {
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -12px;
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.process-step h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
}

.testimonials-section {
    background: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-info small {
    color: var(--text-light);
    font-size: 11px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 12px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.cta-section {
    background: var(--cream);
    text-align: center;
}

.cta-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 0.8rem;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 25px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    max-width: 250px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--primary-light);
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom p span {
    color: var(--primary-light);
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.policy-links a:hover {
    color: var(--white);
}

.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
    padding: 100px 0 40px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
}

.services-list {
    display: grid;
    gap: 30px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even)>* {
    direction: ltr;
}

.service-item-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.service-item-content ul {
    list-style: none;
    margin-top: 1rem;
}

.service-item-content li {
    padding: 5px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-item-content li i {
    color: var(--primary);
}

.service-item-image img {
    border-radius: var(--radius);
}

.pricing-section {
    background: var(--secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover,
.pricing-card.featured {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: var(--primary);
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pricing-price {
    margin: 15px 0;
}

.pricing-price span {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.pricing-price small {
    font-size: 12px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 15px 0;
    text-align: left;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features i {
    color: var(--primary);
    font-size: 12px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--white);
}

.team-card h4 {
    margin-bottom: 3px;
}

.team-card span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-section {
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-detail i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail div h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-detail div p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 138, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    font-weight: 400;
    margin: 0;
    color: var(--text-light);
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 15px 30px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 15px;
    height: 100vh;
}

.error-content,
.thankyou-content {
    max-width: 500px;
}

.error-icon,
.thankyou-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--primary);
}

.error-content h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.error-content h2,
.thankyou-content h1 {
    margin-bottom: 1rem;
}

.error-content p,
.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.policy-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.policy-content h2 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.policy-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content p {
    color: var(--text-light);
    font-size: 13px;
}

.policy-content ul {
    margin: 1rem 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--primary);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.value-icon {
    width: 55px;
    height: 55px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;
    color: var(--primary);
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-light);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 30px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    margin-left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-item:nth-child(even)::after {
    right: auto;
    left: -8px;
}

.timeline-content {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.timeline-date {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
}

.faq-section {
    background: var(--secondary);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 15px;
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.nav-close {
    display: none;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .testimonials-grid,
    .pricing-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
    }

    .timeline-item::after {
        left: -8px;
        right: auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    nav a {
        font-size: 14px;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: var(--text-dark);
        display: block;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .overlay.active {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    section {
        padding: 40px 0;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .policy-content {
        padding: 25px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-box {
        padding: 25px;
    }

    .about-stats {
        position: static;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .error-content h1 {
        font-size: 3rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .service-card,
    .pricing-card,
    .value-card,
    .team-card {
        padding: 20px 15px;
    }
}