/* Base styles and variables */
:root {
    --background-color: #FDF9EF;
    --primary-accent: #5936A1;
    --secondary-accent: #2CA89D;
    --heading-color: #1B1B1B;
    --text-color: #3B3B3B;
    --button-gradient-from: #FF9472;
    --button-gradient-to: #F2709C;
    --container-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--button-gradient-from), var(--button-gradient-to));
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-accent);
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Header styles */
.main-header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    flex: 0 0 auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(to right, var(--button-gradient-from), var(--button-gradient-to));
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 112, 156, 0.4);
}

.main-nav .cta-button::after {
    display: none;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, rgba(89, 54, 161, 0.05) 0%, rgba(44, 168, 157, 0.05) 100%);
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
}

/* About section */
.about {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2::after {
    left: 0;
}

/* Benefits section */
.benefits {
    background-color: var(--background-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(89, 54, 161, 0.1);
    border-radius: 50%;
    color: var(--primary-accent);
}

/* Services section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
    background-color: white;
}

.service-content h3 {
    margin-bottom: 15px;
}

/* Testimonials section */
.testimonials {
    background: linear-gradient(135deg, rgba(89, 54, 161, 0.05) 0%, rgba(44, 168, 157, 0.05) 100%);
}

.testimonials h2 {
    text-align: center;
}

.testimonials h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    margin-bottom: 5px;
}

.client-details p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #777;
}

/* How we work section */
.how-we-work {
    background-color: white;
    text-align: center;
}

.how-we-work h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.work-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.work-step {
    flex: 1;
    min-width: 220px;
    position: relative;
    padding: 0 20px;
    margin-bottom: 40px;
}

.work-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--button-gradient-from), var(--button-gradient-to));
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, var(--button-gradient-from), var(--button-gradient-to));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Order form section */
.order {
    background: linear-gradient(135deg, rgba(89, 54, 161, 0.05) 0%, rgba(44, 168, 157, 0.05) 100%);
}

.order h2 {
    text-align: center;
}

.order h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(89, 54, 161, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-top: 5px;
    margin-right: 10px;
}

.submit-button {
    background: linear-gradient(to right, var(--button-gradient-from), var(--button-gradient-to));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    width: 100%;
    font-size: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 112, 156, 0.4);
}

/* Contact section */
.contact {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info address {
    font-style: normal;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Footer styles */
.main-footer {
    background-color: #1B1B1B;
    color: #f5f5f5;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    margin-bottom: 20px;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a, .footer-contact a {
    color: #f5f5f5;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover, .footer-contact a:hover {
    opacity: 1;
    color: var(--secondary-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.7;
}

.cookie-notice-mini a {
    color: var(--secondary-accent);
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    z-index: 1000;
}

.cookie-popup-content {
    padding: 25px;
}

.cookie-popup h3 {
    margin-bottom: 15px;
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.cookie-checkbox input {
    margin-top: 5px;
    margin-right: 10px;
}

.cookie-button {
    background: linear-gradient(to right, var(--button-gradient-from), var(--button-gradient-to));
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 112, 156, 0.4);
}

/* Thank you page */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you h1 {
    margin-bottom: 30px;
}

/* Policy pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.policy-content h1 {
    margin-bottom: 40px;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h2::after {
    width: 60px;
    bottom: -10px;
}

.policy-content p, .policy-content ul, .policy-content ol {
    margin-bottom: 20px;
}

.policy-content ul, .policy-content ol {
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .work-step:not(:last-child)::after {
        display: none;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .contact-map iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .order-form {
        padding: 25px;
    }
    
    .benefit-card, .service-card, .testimonial-card {
        padding: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
} 