@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #8B7355;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-medium: #2A2A2A;
    --white: #FAFAFA;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
}

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: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
}

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: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 100%);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    left: 20px;
}

.logo span {
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 20px;
    z-index: 1001;
}

.nav-toggle i {
    font-size: 1.4rem;
    color: var(--gold);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-light);
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.hero h1 span {
    color: var(--gold);
    display: block;
}

.hero p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gold);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto;
}

.about-section {
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border: 1px solid var(--gold-dark);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-content h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.about-content p {
    color: var(--gray-light);
    margin-bottom: 15px;
    font-size: 13px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--gold);
    font-size: 14px;
}

.about-feature span {
    font-size: 12px;
    color: var(--gray-light);
}

.services-section {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--black-light);
    padding: 25px;
    text-align: center;
    border: 1px solid var(--black-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.service-card h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--gray);
    font-size: 12px;
}

.products-section {
    background: var(--black-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--black);
    border: 1px solid var(--black-medium);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--gold-dark);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.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;
    right: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.product-info p {
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
}

.price small {
    font-size: 11px;
    color: var(--gray);
    display: block;
}

.process-section {
    background: var(--black);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--gold-dark);
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.process-step h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--gray);
    font-size: 11px;
}

.testimonials-section {
    background: var(--black-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--black);
    padding: 25px;
    border-left: 2px solid var(--gold);
}

.testimonial-text {
    color: var(--gray-light);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 13px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author i {
    font-size: 2rem;
    color: var(--gold-dark);
}

.author-info h5 {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.author-info span {
    color: var(--gray);
    font-size: 11px;
}

.cta-section {
    background: linear-gradient(135deg, var(--black-medium) 0%, var(--black) 100%);
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta-section p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 13px;
}

.contact-section {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray-light);
    font-size: 13px;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 2px;
}

.contact-item div {
    font-size: 12px;
}

.contact-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 3px;
}

.contact-item span {
    color: var(--gray-light);
}

.contact-form-wrapper {
    background: var(--black-light);
    padding: 30px;
    border: 1px solid var(--black-medium);
}

.contact-form-wrapper h3 {
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: var(--gray-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--black);
    border: 1px solid var(--black-medium);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.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;
    accent-color: var(--gold);
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 11px;
    color: var(--gray-light);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--gold);
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.map-section {
    height: 300px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) contrast(1.1);
}

footer {
    background: var(--black-light);
    padding: 25px 0 15px;
    border-top: 1px solid var(--black-medium);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
}

.footer-logo span {
    color: var(--white);
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    font-size: 11px;
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--black-medium);
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 10px;
    color: var(--gray);
}

.privacy-links {
    display: flex;
    gap: 15px;
}

.privacy-links a {
    font-size: 10px;
    color: var(--gray);
}

.privacy-links a:hover {
    color: var(--gold);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black-light);
    padding: 20px;
    border-top: 1px solid var(--gold-dark);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    color: var(--gray-light);
    flex: 1;
}

.cookie-content a {
    color: var(--gold);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.page-header {
    padding: 100px 0 50px;
    background: var(--black-light);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header h1 span {
    color: var(--gold);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gray);
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    color: var(--gold);
    margin-bottom: 15px;
}

.content-section h3 {
    color: var(--white);
    margin: 20px 0 10px;
}

.content-section p {
    color: var(--gray-light);
    margin-bottom: 12px;
    font-size: 13px;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-section li {
    color: var(--gray-light);
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.error-content p {
    color: var(--gray-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thankyou-content i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.thankyou-content h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.thankyou-content p {
    color: var(--gray-light);
    margin-bottom: 25px;
    font-size: 14px;
    max-width: 500px;
}

.services-detail-section {
    background: var(--black);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-detail-card {
    background: var(--black-light);
    padding: 30px;
    border: 1px solid var(--black-medium);
    transition: border-color 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--gold-dark);
}

.service-detail-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.service-detail-card h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.service-detail-card p {
    color: var(--gray);
    font-size: 12px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-item i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 2px;
}

.benefit-item div h5 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 5px;
}

.benefit-item div p {
    color: var(--gray);
    font-size: 11px;
}

.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-option {
    background: var(--black-light);
    padding: 25px;
    text-align: center;
    border: 1px solid var(--black-medium);
    transition: all 0.3s ease;
}

.custom-option:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.custom-option i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.custom-option h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.custom-option p {
    color: var(--gray);
    font-size: 11px;
}

.contact-hero {
    background: var(--black-light);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--gold-dark) 0%, transparent 70%);
    opacity: 0.1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-hero h1 span {
    color: var(--gold);
}

.contact-hero p {
    color: var(--gray-light);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-main {
    background: var(--black);
    padding: 60px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--black-light);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid var(--black-medium);
    transition: border-color 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--gold-dark);
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-info-card h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--gray-light);
    font-size: 12px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    color: var(--gold);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-content h3 {
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.policy-content p {
    color: var(--gray-light);
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 0;
}

.policy-content li {
    color: var(--gray-light);
    font-size: 13px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold);
}

.last-updated {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

@media (max-width: 992px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .hero h1 { font-size: 2.2rem; }
    
    .about-grid,
    .contact-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .custom-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        justify-content: space-between;
    }
    
    .logo {
        position: static;
    }
    
    .nav-toggle {
        display: block;
        position: static;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--black-light);
        padding: 60px 30px 30px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--gold-dark);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .main-nav a {
        font-size: 13px;
    }
    
    .hero h1 { font-size: 1.8rem; }
    
    .services-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .custom-options-grid {
        grid-template-columns: 1fr;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero h1 { font-size: 1.5rem; }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
}
