/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #37474F;
    background-color: #F4F4F4;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #006064;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #B2EBF2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #006064, #00838F);
    color: white;
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background-color: #00838F;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #00695C;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: #263238;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #006064;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: #F4F4F4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #006064;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-item p {
    color: #37474F;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border: 2px solid #CFD8DC;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: #006064;
    transform: scale(1.05);
}

.service-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #006064;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.service-card h3 {
    color: #006064;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: #00838F;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E0E0E0;
    color: #37474F;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-button {
    background-color: #00838F;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    width: 100%;
}

.service-button:hover {
    background-color: #006064;
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    background-color: #CFD8DC;
}

.trust-content {
    text-align: center;
}

.trust-text {
    margin-bottom: 2rem;
}

.trust-text p {
    font-size: 1.2rem;
    color: #37474F;
    max-width: 800px;
    margin: 0 auto;
}

.trust-certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-item {
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: #006064;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #F4F4F4;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #37474F;
}

.testimonial-author strong {
    color: #006064;
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: #F4F4F4;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    background-color: #006064;
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* Order Form Section */
.order-form {
    padding: 5rem 0;
    background-color: white;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #F4F4F4;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #263238;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #CFD8DC;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006064;
}

.form-checkboxes {
    margin-bottom: 2rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: #006064;
    text-decoration: underline;
}

.submit-button {
    background-color: #00838F;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #006064;
}

/* Footer */
.footer {
    background-color: #CFD8DC;
    padding: 3rem 0 1rem;
    color: #37474F;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #006064;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #37474F;
    text-decoration: none;
}

.footer-section a:hover {
    color: #006064;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #B0BEC5;
    color: #666;
}

/* Legal Pages Styles */
.legal-page {
    padding: 5rem 0;
    background-color: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h2 {
    color: #006064;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #CFD8DC;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #00838F;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #37474F;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #37474F;
}

.legal-content a {
    color: #006064;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #00838F;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 5rem 0;
    background-color: #F4F4F4;
    min-height: 70vh;
}

.thank-you-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    background-color: #006064;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,96,100,0.3);
}

.thank-you-message {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-message {
    font-size: 1.3rem;
    color: #006064;
    font-weight: bold;
    margin-bottom: 1rem;
}

.next-steps {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.next-steps h2 {
    color: #006064;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #F4F4F4;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #00838F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: #006064;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #37474F;
    font-size: 0.9rem;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #006064;
    margin-bottom: 1rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-item {
    padding: 1rem;
    background-color: #F4F4F4;
    border-radius: 5px;
    text-align: center;
}

.contact-item strong {
    color: #006064;
}

.contact-item a {
    color: #00838F;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background-color: transparent;
    color: #006064;
    border: 2px solid #006064;
}

.cta-button.secondary:hover {
    background-color: #006064;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-certifications {
        flex-direction: column;
        align-items: center;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .benefit-item,
    .service-card {
        padding: 1.5rem;
    }
    
    .legal-content,
    .thank-you-content {
        padding: 0 1rem;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
} 