/* 
InsightFocus Media Stylesheet - Modern Design
Color Palette:
- Primary: #2A41E8 (royal blue)
- Secondary: #FF4B4B (coral red)
- Accent: #00CCBB (teal)
- Background: #FFFFFF (white)
- Dark Background: #222B45 (dark navy)
- Text: #333333 (dark gray)
- Light Text: #FFFFFF (white)
*/

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

a {
    text-decoration: none;
    color: #2A41E8;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF4B4B;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2A41E8, #00CCBB);
    margin: 1rem auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.cta-button, .order-button, .submit-button, .primary-button {
    display: inline-block;
    background: linear-gradient(135deg, #2A41E8, #3651FF);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(42, 65, 232, 0.2);
}

.cta-button:hover, .order-button:hover, .submit-button:hover, .primary-button:hover {
    background: linear-gradient(135deg, #3651FF, #2A41E8);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 65, 232, 0.3);
}

.secondary-button {
    background: transparent;
    color: #2A41E8;
    border: 2px solid #2A41E8;
    padding: 12px 26px;
}

.secondary-button:hover {
    background: #2A41E8;
    color: #FFFFFF;
}

.cookie-button {
    background: #00CCBB;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    background: #00bbaa;
    transform: translateY(-2px);
}

.cookie-link {
    color: #FFFFFF;
    margin-left: 15px;
    text-decoration: underline;
}

/* Header */
.site-header {
    background-color: #FFFFFF;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
}

.main-nav .menu {
    display: flex;
    list-style: none;
}

.main-nav .menu li {
    margin-left: 2rem;
}

.main-nav .menu a {
    color: #333333;
    font-weight: 500;
    padding: 0.5rem;
    display: block;
    position: relative;
}

.main-nav .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2A41E8, #00CCBB);
    transition: width 0.3s ease;
}

.main-nav .menu a:hover {
    color: #2A41E8;
}

.main-nav .menu a:hover::after {
    width: 100%;
}

.main-nav .menu .nav-cta {
    background: linear-gradient(135deg, #2A41E8, #3651FF);
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(42, 65, 232, 0.2);
}

.main-nav .menu .nav-cta:hover {
    background: linear-gradient(135deg, #3651FF, #2A41E8);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 65, 232, 0.3);
}

.main-nav .menu .nav-cta::after {
    display: none;
}

.menu-toggle, .menu-icon {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 0;
    background: url('../img/3rZ3vP.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 43, 69, 0.85) 0%, rgba(42, 65, 232, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-content .cta-button {
    font-size: 1.125rem;
    padding: 16px 38px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.about-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.125rem;
    color: #555555;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: #F8FAFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 65, 232, 0.1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-icon svg {
    width: 70px;
    height: 70px;
}

.benefit-icon svg path {
    fill: #2A41E8;
    transition: fill 0.3s ease;
}

.benefit-card:hover .benefit-icon svg path {
    fill: #FF4B4B;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #222B45;
}

.benefit-card p {
    color: #555555;
    margin-bottom: 0;
}

/* Services and Pricing Section */
.services-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background-color: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #EEEEEE;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 65, 232, 0.1);
    border-color: #2A41E8;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #222B45;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: #2A41E8;
    margin-bottom: 1.5rem;
    display: block;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #EEEEEE;
    color: #555555;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #FFFFFF, #F8FAFF);
    transform: scale(1.05);
    border: 2px solid #2A41E8;
    z-index: 2;
}

.pricing-card.featured::before {
    content: 'Best Value';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2A41E8, #3651FF);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card .order-button {
    width: 80%;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: #222B45;
    color: #FFFFFF;
}

.testimonials-section h2 {
    color: #FFFFFF;
}

.testimonials-section h2::after {
    background: linear-gradient(90deg, #FF4B4B, #00CCBB);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #00CCBB;
    padding: 3px;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #DDDDDD;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author p {
    margin-bottom: 0.25rem;
}

.testimonial-author p:last-child {
    color: #00CCBB;
    font-size: 0.875rem;
}

/* Order Form Section */
.order-section {
    padding: 6rem 0;
    background-color: #F8FAFF;
}

.order-form {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #222B45;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2A41E8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 65, 232, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
}

.form-error {
    background-color: #FFEEEE;
    color: #FF4B4B;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border-left: 4px solid #FF4B4B;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: #F8FAFF;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    color: #222B45;
    background-color: #F8FAFF;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    color: #2A41E8;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #555555;
}

/* Footer */
.site-footer {
    background-color: #222B45;
    padding: 4rem 0 2rem;
    color: #FFFFFF;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #DDDDDD;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00CCBB;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon svg path {
    fill: #00CCBB;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    background-color: #00CCBB;
    transform: translateY(-5px);
}

.social-icon:hover svg path {
    fill: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #AAAAAA;
    font-size: 0.875rem;
}

/* Thank You Page */
.thankyou-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    background-color: #F8FAFF;
    padding: 8rem 0 4rem;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Policy Pages */
.policy-section {
    padding: 8rem 0 4rem;
    background-color: #FFFFFF;
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.75rem;
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.policy-section h2::after {
    margin: 0.5rem 0 0;
}

.policy-section h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    color: #222B45;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 0.5rem;
}

.policy-section address {
    font-style: normal;
    background-color: #F8FAFF;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: #222B45;
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.cookie-popup p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.cookie-popup form {
    display: flex;
    align-items: center;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .menu-icon {
        display: block;
        cursor: pointer;
        padding: 10px;
    }
    
    .menu-icon span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333333;
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .main-nav .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #FFFFFF;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        z-index: 100;
    }
    
    .menu-toggle:checked ~ .menu {
        max-height: 500px;
    }
    
    .main-nav .menu li {
        margin: 0;
    }
    
    .main-nav .menu a {
        padding: 1rem 2rem;
    }
    
    .pricing-grid, .benefits-grid, .testimonials-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-popup p {
        margin-bottom: 1rem;
    }
    
    .form-group input, 
    .form-group select {
        padding: 0.75rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .hero-content .cta-button {
        font-size: 1rem;
        padding: 12px 28px;
    }
    
    .benefit-card, .pricing-card, .testimonial-card {
        padding: 1.5rem;
    }
    
    .order-form {
        padding: 1.5rem;
    }
} 