@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5d4e37;
    --secondary: #8b7355;
    --accent: #c9a66b;
    --dark: #2d2418;
    --light: #f5f0e8;
    --white: #ffffff;
    --gray: #6b6b6b;
    --border: #e0d5c7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    position: fixed;
    background: rgba(45, 36, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
}

.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(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 16px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.header.scrolled .logo-text {
    color: var(--white);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 24px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    padding: 6px 0;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact {
    display: none;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 12px;
}

.header-contact i {
    color: var(--accent);
}

.menu-toggle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    padding: 80px 20px 30px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-mobile a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: rgba(201, 166, 107, 0.1);
    color: var(--accent);
}

.nav-mobile-contact {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13px;
    margin-bottom: 12px;
}

.nav-mobile-contact i {
    color: var(--accent);
    width: 16px;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 30px 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 166, 107, 0.2);
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 16px;
}

.hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto 24px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 14px;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(93, 78, 55, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.service-link:hover {
    color: var(--accent);
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.about-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.about-feature i {
    color: var(--accent);
    font-size: 16px;
}

.process-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.process-section .section-title {
    color: var(--white);
}

.process-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-section {
    background: var(--light);
}

.pricing-grid {
    display: grid;
    gap: 20px;
}

.pricing-card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--accent);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--accent);
    color: var(--dark);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 12px;
}

.pricing-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.pricing-card .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent);
    font-size: 12px;
}

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card {
    background: var(--light);
    border-radius: 8px;
    padding: 24px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.author-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    text-align: center;
    padding: 40px 0;
}

.cta-section h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 14px;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 20px;
}

.cta-section .btn {
    background: var(--dark);
    color: var(--white);
}

.cta-section .btn:hover {
    background: var(--white);
    color: var(--dark);
}

.footer {
    background: var(--dark);
    padding: 30px 0 20px;
}

.footer-main {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--accent);
    width: 14px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.footer-policies a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-policies a:hover {
    color: var(--accent);
}

.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 100px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 25px;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--accent);
}

.breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    gap: 30px;
}

.content-main h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.content-main p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.content-main ul {
    margin-bottom: 20px;
}

.content-main ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    padding: 8px 0;
}

.content-main ul li i {
    color: var(--accent);
    margin-top: 3px;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border);
}

.sidebar-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 13px;
    color: var(--gray);
}

.contact-form-wrapper {
    background: var(--light);
    border-radius: 8px;
    padding: 24px;
}

.contact-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-content h1 {
    font-size: 80px;
    color: var(--accent);
    margin-bottom: 16px;
}

.error-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.error-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thankyou-content {
    max-width: 480px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--white);
}

.thankyou-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.thankyou-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.policy-content {
    padding: 50px 0;
}

.policy-content h1 {
    font-size: 26px;
    margin-bottom: 8px;
}

.policy-date {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 30px;
}

.policy-content h2 {
    font-size: 18px;
    margin: 30px 0 12px;
}

.policy-content h3 {
    font-size: 16px;
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 14px;
}

.policy-content ul,
.policy-content ol {
    margin: 14px 0;
    padding-left: 20px;
}

.policy-content ul {
    list-style: disc;
}

.policy-content ol {
    list-style: decimal;
}

.policy-content li {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 12px;
}

.about-team {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.team-member {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
    flex-shrink: 0;
}

.team-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.team-info span {
    font-size: 12px;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.team-info p {
    font-size: 12px;
    color: var(--gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.faq-section {
    background: var(--light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 14px;
    font-weight: 500;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.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 16px 16px;
    font-size: 13px;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (min-width: 480px) {
    .hero h1 {
        font-size: 38px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 864px) {
    .nav-desktop {
        display: block;
    }
    
    .header-contact {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero h1 {
        font-size: 46px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 9px;
    }
}
