@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d3436;
    --secondary: #d4a574;
    --accent: #a8907a;
    --light: #faf8f5;
    --cream: #f5f0e8;
    --text: #4a4a4a;
    --white: #ffffff;
    --shadow: rgba(45, 52, 54, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.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(--primary);
    transition: all 0.3s ease;
    margin: 3px 0;
}

.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);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: var(--white);
    transform: rotate(15deg);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    max-width: 480px;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 4px;
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    z-index: -1;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--accent);
    font-size: 13px;
    max-width: 500px;
    margin: 0 auto;
}

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 30px 20px;
    text-align: center;
    background: var(--light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 12px;
    color: var(--text);
    line-height: 1.7;
}

.about-section {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 4px;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40%;
    height: 40%;
    background: var(--secondary);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.features-list {
    margin: 20px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 8px;
}

.features-list i {
    color: var(--secondary);
    font-size: 14px;
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    height: 180px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image i {
    font-size: 3rem;
    color: var(--accent);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 11px;
    color: var(--text);
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 600;
}

.process-section {
    background: var(--primary);
    color: var(--white);
}

.process-section .section-header h2 {
    color: var(--white);
}

.process-section .section-header p {
    color: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 11px;
    color: var(--cream);
    line-height: 1.7;
}

.testimonials-section {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-text {
    font-style: italic;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.author-info h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--accent);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--cream);
    font-size: 13px;
    margin-bottom: 20px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--primary);
    color: var(--white);
}

.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text);
    font-size: 13px;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 11px;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--text);
}

.content-section {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 15px;
}

.content-main h3 {
    margin: 25px 0 12px;
}

.content-main p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-sidebar {
    background: var(--light);
    padding: 25px;
    border-radius: 4px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 25px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--cream);
}

.sidebar-widget ul li {
    padding: 6px 0;
    font-size: 12px;
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget ul li a:hover {
    color: var(--secondary);
}

.sidebar-widget ul li i {
    color: var(--secondary);
    font-size: 10px;
}

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 35px;
    border-radius: 4px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 13px;
    color: var(--cream);
    margin-bottom: 25px;
    line-height: 1.8;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.info-item i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 2px;
}

.info-item div h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 3px;
}

.info-item div span {
    font-size: 12px;
    color: var(--cream);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: 4px;
    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: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--cream);
    border-radius: 2px;
    background: var(--light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--secondary);
}

.checkbox-group label {
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--secondary);
    text-decoration: underline;
}

.map-section {
    background: var(--white);
    padding: 40px 0;
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.about-intro {
    background: var(--white);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.values-section {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: 4px;
    text-align: center;
}

.value-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 12px;
    color: var(--text);
    line-height: 1.7;
}

.team-section {
    background: var(--light);
}

.team-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.team-text p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section {
    background: var(--white);
}

.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: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content ul li {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
}

.error-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.error-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
    height: 100vh;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.error-content h2 {
    margin-bottom: 12px;
}

.error-content p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 25px;
}

.thankyou-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.thankyou-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
    height: 100vh;
}

.thankyou-content i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thankyou-content h1 {
    margin-bottom: 15px;
}

.thankyou-content p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 25px;
    max-width: 450px;
}

footer {
    background: var(--primary);
    color: var(--cream);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    font-size: 11px;
    color: var(--cream);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary);
}

.footer-contact h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-contact p {
    font-size: 11px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
}

.copyright span {
    color: var(--white);
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 10px;
    color: var(--cream);
}

.policy-links a:hover {
    color: var(--secondary);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.privacy-popup p {
    font-size: 11px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-popup a {
    color: var(--secondary);
    text-decoration: underline;
}

.popup-buttons {
    display: flex;
    gap: 10px;
}

.popup-buttons .btn {
    padding: 8px 16px;
    font-size: 11px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--light);
    padding: 25px;
    border-radius: 4px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--secondary);
}

.info-card p {
    font-size: 12px;
    line-height: 1.8;
}

.highlight-box {
    background: var(--cream);
    padding: 25px;
    border-radius: 4px;
    border-left: 3px solid var(--secondary);
    margin: 25px 0;
}

.highlight-box p {
    font-size: 13px;
    font-style: italic;
    line-height: 1.8;
}

@media (max-width: 992px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .about-intro-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px var(--shadow);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid var(--cream);
    }
    
    .main-nav a {
        display: block;
        padding: 12px 0;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@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;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 11px;
    }
    
    .service-card,
    .value-card {
        padding: 20px 15px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 7px 14px;
        font-size: 10px;
    }
    
    .footer-contact p {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
