@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4a5a5;
    --secondary: #f5e6e0;
    --accent: #c9a96e;
    --dark: #2d2d2d;
    --light: #faf8f6;
    --blush: #e8c4c4;
    --cream: #f7f3ef;
    --gold: #b8956e;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--blush));
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 165, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--light);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 165, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 248, 246, 0.92), rgba(232, 196, 196, 0.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-desc {
    font-size: 13px;
    color: #666;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 8px;
    z-index: -1;
}

.about-content h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.about-features {
    margin-top: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.about-features i {
    color: var(--accent);
    font-size: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--cream);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--blush));
    border-radius: 50%;
    color: var(--dark);
    font-size: 22px;
}

.service-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.gallery-section {
    background: var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--light);
    font-size: 13px;
    font-weight: 500;
}

.process-section {
    background: linear-gradient(135deg, var(--cream), var(--secondary));
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    width: calc(100% - 50px);
    height: 1px;
    background: var(--primary);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-step p {
    font-size: 12px;
    color: #666;
}

.testimonials-section {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--secondary);
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--blush));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.author-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 11px;
    color: #888;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--blush));
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.cta-section p {
    color: #555;
    max-width: 500px;
    margin: 0 auto 25px;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.25);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    margin-bottom: 8px;
    color: var(--dark);
}

.product-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
}

.contact-section {
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--blush));
    padding: 35px;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info p {
    font-size: 13px;
    color: #444;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--dark);
    font-size: 14px;
}

.contact-item-content h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.contact-item-content span {
    font-size: 12px;
    color: #444;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.2);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.checkbox-group label {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--accent);
    text-decoration: underline;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo span {
    color: var(--accent);
}

.footer-nav ul {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.copyright span {
    color: var(--accent);
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.policy-links a:hover {
    color: var(--accent);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    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;
    color: var(--dark);
    font-size: 14px;
}

.privacy-popup p {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup .btn {
    padding: 8px 18px;
    font-size: 11px;
}

.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--cream), var(--secondary));
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.page-hero p {
    font-size: 14px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    color: #888;
}

.thank-you-page,
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thank-you-content,
.error-content {
    max-width: 500px;
}

.thank-you-icon,
.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--blush));
    border-radius: 50%;
    font-size: 35px;
    color: var(--dark);
}

.error-icon {
    background: linear-gradient(135deg, #f5c6c6, #e8a5a5);
}

.thank-you-content h1,
.error-content h1 {
    margin-bottom: 15px;
    color: var(--dark);
}

.thank-you-content p,
.error-content p {
    color: #666;
    margin-bottom: 25px;
}

.policy-page {
    padding: 60px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    color: var(--dark);
}

.policy-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: var(--cream);
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 165, 0.15);
}

.feature-box i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
}

.feature-box h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-box p {
    font-size: 11px;
    color: #666;
    margin: 0;
}

.stats-section {
    background: var(--dark);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-section {
    background: var(--light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 20px;
}

.intro-list {
    margin-top: 20px;
}

.intro-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.intro-list i {
    color: var(--accent);
}

.pricing-table {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--blush));
    padding: 25px;
    text-align: center;
}

.pricing-header h4 {
    margin-bottom: 5px;
}

.pricing-header span {
    font-size: 12px;
    color: #555;
}

.pricing-body {
    padding: 25px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 165, 165, 0.3);
    font-size: 13px;
}

.pricing-item:last-child {
    border: none;
}

.pricing-item span:last-child {
    font-weight: 600;
    color: var(--accent);
}

@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    
    .hero h1 { font-size: 2.3rem; }
    
    .about-grid,
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 0;
    }
    
    nav {
        position: fixed;
        top: 52px;
        left: 0;
        width: 100%;
        background: var(--light);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero h1 { font-size: 1.8rem; }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        text-align: center;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body { font-size: 13px; }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    
    .container { padding: 0 12px; }
    
    .section { padding: 40px 0; }
    
    .hero h1 { font-size: 1.5rem; }
    
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 320px) {
    body { font-size: 12px; }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.25rem; }
    
    .logo { font-size: 1.2rem; }
    
    .btn {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .hero h1 { font-size: 1.3rem; }
    
    .service-card,
    .product-card {
        padding: 20px 15px;
    }
}
