@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #c53030;
    --secondary-light: #e53e3e;
    --accent: #2f855a;
    --accent-light: #48bb78;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --copper: #b87333;
    --copper-light: #d4956a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    transform: translateY(-100%);
}

header.scrolled.show {
    transform: translateY(0);
}

.header-wrapper {
    display: flex;
    justify-content: center;
    padding: 0.8rem 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    box-shadow: var(--shadow);
    max-width: 900px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.4rem;
    color: var(--copper);
}

.logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.3rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--copper);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
}

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-content h1 span {
    color: var(--copper);
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

.hero-badge {
    position: absolute;
    bottom: -1rem;
    left: 0;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-badge i {
    font-size: 1.5rem;
    color: var(--accent);
}

.hero-badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
}

.hero-badge-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.services {
    padding: 4rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--copper);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-icon.blue {
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary);
}

.service-icon.copper {
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper);
}

.service-icon.green {
    background: rgba(47, 133, 90, 0.1);
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card a {
    font-size: 0.85rem;
    color: var(--copper);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-card a:hover {
    gap: 0.5rem;
}

.why-us {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.why-card i {
    font-size: 2rem;
    color: var(--copper);
    margin-bottom: 0.8rem;
}

.why-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.process {
    padding: 4rem 0;
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--primary));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.products {
    padding: 4rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--copper);
}

.product-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.product-content {
    padding: 1.2rem;
}

.product-content h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.product-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--copper);
}

.product-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta .btn {
    background: var(--white);
    color: var(--copper);
}

.cta .btn:hover {
    background: var(--primary);
    color: var(--white);
}

.page-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--copper-light);
}

.content-section {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.content-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.content-list {
    margin: 1rem 0;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.content-list i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.content-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--copper);
}

.feature-item h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-section {
    padding: 3rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form-wrapper {
    padding: 2rem;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > 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.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--copper);
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--copper);
    text-decoration: underline;
}

.contact-map {
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--copper);
    margin-bottom: 0.5rem;
}

.info-card h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.info-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thank-you-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.thank-you-content h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.error-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.policy-section {
    padding: 3rem 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.policy-content h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 1.5rem 0 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.policy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.policy-content ul {
    margin: 0.8rem 0 0.8rem 1.5rem;
}

.policy-content li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    list-style: disc;
}

.policy-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo i {
    font-size: 1.2rem;
    color: var(--copper);
}

.footer-logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--copper);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy span {
    color: var(--copper);
}

.privacy-popup {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 400px;
    background: var(--white);
    padding: 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-popup h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.privacy-popup p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.privacy-popup a {
    color: var(--copper);
    text-decoration: underline;
}

.popup-buttons {
    display: flex;
    gap: 0.5rem;
}

.popup-buttons .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        margin: 0 auto;
    }
    
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero::before {
        width: 100%;
        height: 50%;
        clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
    }
    
    .services-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .products-grid,
    .why-grid,
    .process-steps,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .header-content {
        padding: 0.5rem 1rem;
    }
    
    .logo span {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .product-image {
        height: 150px;
    }
    
    .privacy-popup {
        left: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 12px;
    }
    
    .header-content {
        padding: 0.4rem 0.8rem;
    }
    
    .hero {
        padding: 5rem 0 2rem;
    }
}
