:root {
    --primary: #2c4a6e;
    --primary-dark: #1a2e47;
    --primary-light: #3d6a96;
    --secondary: #c49b66;
    --secondary-light: #d4b48a;
    --accent: #5a8f7b;
    --accent-light: #7ab39e;
    --bg: #f7f5f2;
    --bg-white: #ffffff;
    --bg-dark: #1a2332;
    --bg-accent: #eee9e2;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --text-inv: #f0ece7;
    --border: #e0dbd5;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --header-h: 64px;
    --container: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--secondary);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 0.8rem; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.2rem;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: var(--header-h);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.site-header.is-scrolled {
    position: fixed;
    background: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.2rem;
}

.header-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    z-index: 110;
}

.header-logo:hover {
    color: var(--secondary);
}

.nav-list {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 0.2rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 110;
}

.toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-dark);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.toggle-line:nth-child(1) { top: 0; }
.toggle-line:nth-child(2) { top: 9px; }
.toggle-line:nth-child(3) { top: 18px; }

.nav-toggle.is-active .toggle-line:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.nav-toggle.is-active .toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active .toggle-line:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 245, 242, 0.97);
    z-index: 105;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.is-visible {
    display: flex;
    opacity: 1;
}

.nav-overlay-list {
    text-align: center;
}

.nav-overlay-list li {
    margin-bottom: 1.5rem;
}

.nav-overlay-list a {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.nav-overlay-list a:hover {
    color: var(--secondary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-accent) 50%, #dde4ec 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: var(--header-h);
}

.hero-text {
    max-width: 480px;
}

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    background: rgba(196, 155, 102, 0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 380px;
}

.hero-img {
    display: flex;
    justify-content: center;
}

.hero-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 420px;
    width: auto;
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(44, 74, 110, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background: #b8894f;
    color: var(--bg-white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
}

section {
    padding: 4rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-title {
    margin-bottom: 0.6rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 520px;
    margin-bottom: 2rem;
}

.section-center {
    text-align: center;
}

.section-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border-top: 3px solid var(--secondary);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--bg-white);
}

.service-icon.icon-blue { background: var(--primary); }
.service-icon.icon-gold { background: var(--secondary); }
.service-icon.icon-green { background: var(--accent); }

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.service-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-preview {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.about-text .section-label {
    color: var(--secondary);
}

.about-text p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.about-text .btn {
    margin-top: 0.5rem;
}

.stats-section {
    background: var(--bg-dark);
    color: var(--text-inv);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem 0.5rem;
}

.stat-number {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-inv);
    opacity: 0.8;
}

.approach-section {
    background: var(--bg);
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    padding-left: 52px;
    position: relative;
    margin-bottom: 1.8rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-item h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.timeline-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonials-section {
    background: var(--bg-accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.3rem;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--secondary);
    font-family: 'Fraunces', serif;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.testimonial-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.7rem;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-inv);
    text-align: center;
    padding: 3.5rem 0;
}

.cta-section h2 {
    color: var(--text-inv);
    margin-bottom: 0.6rem;
}

.cta-section p {
    opacity: 0.85;
    font-size: 0.9rem;
    max-width: 480px;
    margin: 0 auto 1.2rem;
}

.cta-section .btn-secondary {
    background: var(--secondary);
}

.page-banner {
    background: linear-gradient(135deg, var(--bg-accent) 0%, #dde4ec 100%);
    padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
    text-align: center;
}

.page-banner h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-banner p {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.content-section {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.content-text h2 {
    margin-bottom: 0.6rem;
}

.content-text p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.packages-section {
    background: var(--bg-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.package-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
}

.package-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--secondary);
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--bg-white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.package-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.package-price {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.package-period {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.package-features {
    text-align: left;
    margin-bottom: 1.2rem;
}

.package-features li {
    font-size: 0.78rem;
    color: var(--text-light);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.package-features li i {
    color: var(--accent);
    font-size: 0.7rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 1.2rem 0.8rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-white);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.step-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.step-card p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.value-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.value-card p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.contact-form-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
    margin-bottom: 0.3rem;
}

.contact-form-wrap > p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-check label {
    font-size: 0.72rem;
    color: var(--text-light);
    cursor: pointer;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.contact-card p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.map-section {
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.site-footer {
    background: var(--bg-dark);
    color: var(--text-inv);
    padding: 1.5rem 0 1rem;
    margin-top: auto;
    font-size: 0.75rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-copy {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-inv);
    opacity: 0.7;
    font-size: 0.72rem;
    transition: opacity var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    color: var(--text-inv);
    padding: 1rem 1.2rem;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-popup.is-visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.78rem;
    margin-bottom: 0;
    opacity: 0.85;
    flex: 1;
    min-width: 200px;
}

.cookie-inner a {
    color: var(--secondary);
}

.cookie-btn {
    background: var(--secondary);
    color: var(--bg-white);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #b8894f;
}

.fullpage-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 2rem) 1.2rem 2rem;
}

.fullpage-content h1 {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.fullpage-content h2 {
    margin-bottom: 0.5rem;
}

.fullpage-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 420px;
    margin: 0 auto 1.2rem;
}

.policy-content {
    padding: 3rem 0;
}

.policy-content h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.policy-content p,
.policy-content li {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
}

.policy-content ul li {
    list-style: disc;
    margin-bottom: 0.3rem;
}

.policy-content ol li {
    list-style: decimal;
    margin-bottom: 0.3rem;
}

.dynamic-date {
    display: inline;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.mission-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.3rem;
    border-left: 3px solid var(--accent);
    box-shadow: var(--shadow);
}

.mission-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.mission-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero p { max-width: 100%; }
    .hero-img { order: -1; }
    .hero-img img { max-height: 280px; }
    .services-grid,
    .testimonials-grid,
    .packages-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    .content-grid.reverse { direction: ltr; }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .hero h1 { font-size: 2rem; }
    section { padding: 2.5rem 0; }

    .nav-toggle { display: block; }
    .main-nav { display: none; }

    .nav-overlay-list a { font-size: 1.3rem; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html { font-size: 13px; }
    .hero h1 { font-size: 1.7rem; }
    .hero { min-height: 90vh; }
    .services-grid,
    .testimonials-grid,
    .packages-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .container { padding: 0 0.8rem; }
    .fullpage-content h1 { font-size: 3rem; }
    .cookie-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 320px) {
    html { font-size: 12px; }
    .hero h1 { font-size: 1.5rem; }
    .header-logo { font-size: 1rem; }
    .container { padding: 0 0.6rem; }
    .contact-form-wrap { padding: 1.2rem; }
    .package-card { padding: 1rem; }
}
