@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #c9a87c;
    --primary-dark: #a88b5c;
    --secondary: #5c6b7a;
    --accent: #d4a5a5;
    --dark: #2d3436;
    --light: #f8f6f3;
    --white: #ffffff;
    --text: #4a4a4a;
    --text-light: #6b6b6b;
    --border: #e8e4df;
    --shadow: rgba(45, 52, 54, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, #f0ebe5 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, var(--accent) 0%, var(--primary) 100%);
    opacity: 0.08;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 420px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 50px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 10px 30px var(--shadow);
}

.hero-badge i {
    color: var(--primary);
    font-size: 18px;
    margin-right: 8px;
}

.hero-badge span {
    font-weight: 600;
    font-size: 13px;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    margin-bottom: 12px;
}

.section-desc {
    max-width: 550px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 14px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 30px 20px;
    background: var(--light);
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 20px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-section {
    background: linear-gradient(135deg, #f5f0eb 0%, var(--light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 6px;
}

.about-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 6px;
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    font-size: 14px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.about-list i {
    color: var(--primary);
    font-size: 14px;
}

.process {
    background: var(--dark);
    color: var(--white);
}

.process .section-subtitle {
    color: var(--accent);
}

.process .section-title {
    color: var(--white);
}

.process .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 25px 15px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 16px;
}

.process-step h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--light);
    padding: 25px;
    border-radius: 6px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-info h5 {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 12px;
    color: var(--text-light);
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 14px;
}

.cta .btn {
    background: var(--white);
    color: var(--primary);
}

.cta .btn:hover {
    background: var(--dark);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 48px;
    color: var(--white);
    opacity: 0.8;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.subpage-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, #f0ebe5 100%);
    text-align: center;
}

.subpage-hero h1 {
    margin-bottom: 12px;
}

.subpage-hero p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--text-light);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: var(--dark);
    padding: 35px;
    border-radius: 6px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

.contact-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 12px;
    color: var(--text-light);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.map-container {
    margin-top: 40px;
    border-radius: 6px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--light);
    border-radius: 6px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.team-avatar i {
    font-size: 32px;
    color: var(--white);
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

.team-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
}

.value-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
}

.session-details {
    background: var(--white);
}

.session-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.session-content h2 {
    margin-bottom: 15px;
}

.session-content p {
    color: var(--text-light);
    font-size: 14px;
}

.session-features {
    margin: 20px 0;
}

.session-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.session-features i {
    color: var(--primary);
}

.session-image {
    position: relative;
}

.session-image img {
    border-radius: 6px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
}

.pricing-features i {
    color: var(--primary);
    font-size: 12px;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.policy-section {
    padding: 60px 0;
    min-height: 60vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.policy-content h3 {
    margin: 25px 0 12px;
    font-size: 1.1rem;
}

.policy-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 15px 0 20px 20px;
}

.policy-content li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    list-style: disc;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.error-content h2 {
    margin-bottom: 12px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light) 0%, #f0ebe5 100%);
}

.thankyou-content i {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thankyou-content h1 {
    margin-bottom: 15px;
}

.thankyou-content p {
    color: var(--text-light);
    max-width: 450px;
    margin: 0 auto 25px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.privacy-popup p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.privacy-popup a {
    color: var(--primary);
    text-decoration: underline;
}

.popup-btns {
    display: flex;
    gap: 10px;
}

.popup-btns .btn {
    padding: 8px 16px;
    font-size: 12px;
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-desc {
        margin: 0 auto 25px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .services-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .session-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 70px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 30px var(--shadow);
        transition: right 0.3s ease;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .header.scrolled .nav-toggle span {
        background: var(--dark);
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 45px 0;
    }
    
    .services-grid,
    .products-grid,
    .testimonial-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .container {
        padding: 0 12px;
    }
    
    .btn {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 220px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 18px;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    .header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
}
