/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #0D47A1;
}

h2 {
    font-size: 2rem;
    color: #0D47A1;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #1A73E8;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #1A73E8;
}

a:hover {
    color: #0D47A1;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-img {
    height: 80px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list a {
    font-weight: 600;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #0D47A1;
}

.cta-button {
    display: inline-block;
    background-color: #FBBC05;
    color: #333 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #FFD740;
    color: #000 !important;
}

.cta-button.primary {
    background-color: #1A73E8;
    color: white !important;
}

.cta-button.primary:hover {
    background-color: #0D47A1;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A73E8 0%, #0D47A1 100%);
    color: white;
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.content-image-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Placeholder Images */
.placeholder-image {
    background-color: #e3f2fd;
    border: 2px dashed #90caf9;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #0D47A1;
    font-weight: 600;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder {
    background-color: #bbdefb;
    min-height: 400px;
}

.testimonial-placeholder {
    min-height: 100px;
    width: 100px;
    border-radius: 50%;
}

/* Section Styles */
.problem, .solution, .benefits, .compliance, .ease-of-use {
    padding: 4rem 0;
}

.problem, .compliance, .ease-of-use {
    background-color: #f8f9fa;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.content-text {
    flex: 1;
    min-width: 300px;
}

.content-image {
    flex: 1;
    min-width: 300px;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: #e3f2fd;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-image {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1A73E8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

/* Footer */
.footer {
    background-color: #0D47A1;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-info {
    flex: 1;
    min-width: 300px;
    margin-bottom: 1rem;
}

.footer-links {
    flex: 1;
    min-width: 300px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bbdefb;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #1976D2;
}

/* Disclaimer styling */
.disclaimer {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .nav-list {
        margin-top: 1rem;
    }
    
    .nav-list li {
        margin: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .section-content {
        flex-direction: column;
    }
    
    .content-text,
    .content-image {
        width: 100%;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list li {
        margin: 0.5rem;
    }
    
    .hero,
    .problem,
    .solution,
    .benefits,
    .compliance,
    .ease-of-use,
    .testimonials,
    .faq,
    .contact {
        padding: 2rem 0;
    }
}