/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #F6F5F3;
    background-color: #3A3B98;
    overflow-x: hidden;
    padding-top: 4rem;
}

a {
    color: #00D2D3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF6B6B;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #3A3B98 0%, #00D2D3 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 210, 211, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #F6F5F3;
    text-decoration: none;
}

.logo:hover {
    color: #F6F5F3;
}

.nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #F6F5F3 !important;
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #F6F5F3 !important;
}

.cta-nav {
    background: #FF6B6B;
    color: #F6F5F3 !important;
}

.cta-nav:hover {
    background: #FF8E8E;
    color: #F6F5F3 !important;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #F6F5F3;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3A3B98 0%, #00D2D3 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(246,245,243,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #F6F5F3, #00D2D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #F6F5F3;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: #FF6B6B;
    color: #F6F5F3;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-cta:hover {
    background: #FF8E8E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: #F6F5F3;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 0;
    background: #B2F7EF;
    color: #3A3B98;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3A3B98;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat h3 {
    font-size: 2rem;
    color: #FF6B6B;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: #3A3B98;
    margin: 0;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 5rem 0;
    background: #3A3B98;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.why-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #F6F5F3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 211, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00D2D3;
}

.feature p {
    color: #F6F5F3;
    opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #B2F7EF 0%, #00D2D3 100%);
    color: #3A3B98;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.services-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #3A3B98;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #FF6B6B;
}

.service-card.featured {
    background: #FF6B6B;
    color: #F6F5F3;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FF6B6B;
}

.service-card.featured .service-price {
    color: #F6F5F3;
}

.service-content ul {
    list-style: none;
    text-align: left;
}

.service-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D2D3;
    font-weight: bold;
}

.service-card.featured .service-content li::before {
    color: #F6F5F3;
}

.service-image {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 5rem 0;
    background: #3A3B98;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.process-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #F6F5F3;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FF6B6B;
    color: #F6F5F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00D2D3;
}

.step p {
    color: #F6F5F3;
    opacity: 0.9;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
    background: #B2F7EF;
    color: #3A3B98;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #3A3B98;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FF6B6B;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #3A3B98;
}

.testimonial-author strong {
    display: block;
    color: #FF6B6B;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #3A3B98;
    opacity: 0.8;
}

/* ===== ORDER FORM ===== */
.order-form {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3A3B98 0%, #FF6B6B 100%);
    position: relative;
}

.order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(246,245,243,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #F6F5F3;
}

.form-header p {
    font-size: 1.1rem;
    color: #F6F5F3;
    opacity: 0.9;
}

.order-form-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: #3A3B98;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3A3B98;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #B2F7EF;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #F6F5F3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D2D3;
}

.form-checkboxes {
    margin-bottom: 2rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

.form-submit {
    width: 100%;
    background: #FF6B6B;
    color: #F6F5F3;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #FF8E8E;
    transform: translateY(-2px);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 0;
    background: #B2F7EF;
    color: #3A3B98;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #3A3B98;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item h3 {
    color: #FF6B6B;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #3A3B98;
    margin: 0;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #3A3B98;
    color: #F6F5F3;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #00D2D3;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
    color: #F6F5F3;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #F6F5F3;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #00D2D3;
}

.footer-cta {
    display: inline-block;
    background: #FF6B6B;
    color: #F6F5F3;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #FF8E8E;
    color: #F6F5F3;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 210, 211, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3A3B98 0%, #00D2D3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.thank-you-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: #3A3B98;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3A3B98;
}

.thank-you-message {
    margin-bottom: 2rem;
}

.thank-you-message .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FF6B6B;
    margin-bottom: 1rem;
}

.next-steps {
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #3A3B98;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-item {
    padding: 1.5rem;
    background: rgba(178, 247, 239, 0.3);
    border-radius: 15px;
    text-align: center;
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    background: #FF6B6B;
    color: #F6F5F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #3A3B98;
}

.step-item p {
    font-size: 0.9rem;
    color: #3A3B98;
    opacity: 0.8;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3A3B98;
}

.contact-details {
    display: grid;
    gap: 0.5rem;
}

.contact-item {
    color: #3A3B98;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FF6B6B;
    color: #F6F5F3;
}

.btn-primary:hover {
    background: #FF8E8E;
    color: #F6F5F3;
}

.btn-secondary {
    background: transparent;
    color: #3A3B98;
    border: 2px solid #3A3B98;
}

.btn-secondary:hover {
    background: #3A3B98;
    color: #F6F5F3;
}

/* ===== POLICY PAGES ===== */
.policy-page {
    padding: 5rem 0;
    background: #B2F7EF;
    color: #3A3B98;
    min-height: 100vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3A3B98;
}

.policy-date {
    color: #FF6B6B;
    font-weight: 600;
}

.policy-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3A3B98;
}

.policy-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FF6B6B;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-footer {
    text-align: center;
}

.browser-instructions {
    background: rgba(178, 247, 239, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.browser-instructions p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.company-info {
    background: rgba(178, 247, 239, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.contact-info {
    background: rgba(178, 247, 239, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(58, 59, 152, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content h3 {
    color: #00D2D3;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: #F6F5F3;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-accept {
    background: #FF6B6B;
    color: #F6F5F3;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: #FF8E8E;
}

.cookie-more {
    color: #00D2D3;
    padding: 0.8rem 1.5rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-more:hover {
    color: #F6F5F3;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablet */
@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    
    .header-container {
        padding: 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .services-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        padding-top: 3.5rem;
    }
    
    .header-container {
        padding: 0.3rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo svg {
        width: 24px;
        height: 24px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about,
    .why-choose,
    .services,
    .process,
    .testimonials,
    .order-form,
    .contact {
        padding: 3rem 0;
    }
    
    .about-container h2,
    .why-container h2,
    .services-container h2,
    .process-container h2,
    .testimonials-container h2 {
        font-size: 2rem;
    }
    
    .order-form-content {
        padding: 2rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 2rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .order-form-content,
    .thank-you-content,
    .policy-content {
        padding: 1.5rem;
    }
} 