/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #053955;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: #053955;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #00aeef;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0095d0;
    text-decoration: none;
}

/* Header */
.header {
    background-color: #053955;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .header-tagline {
    color: #fff;
    font-size: 0.9rem;
}

.header .logo {
    max-height: 50px;
}

/* Hero Section */
.hero {
    background-color: #006094;
    color: #fff;
    padding: 80px 0;
    min-height: 600px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.9));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.125rem;
}

.video-container {
    max-width: 800px;
    margin: 2rem auto 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #fff;
}

.how-it-works .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.how-content {
    flex: 1;
}

.how-content h2 {
    margin-bottom: 1.5rem;
}

.how-content p {
    font-size: 1.125rem;
}

.how-image {
    flex: 1;
}

.how-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.features-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #00aeef;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: #053955;
    color: #fff;
}

.testimonial h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-company {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00aeef;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-card cite {
    font-style: normal;
    opacity: 0.8;
}

.testimonial-card cite strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

/* Distributor Section */
.distributor {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.distributor h2 {
    margin-bottom: 2rem;
}

.distributor p {
    max-width: 700px;
    margin: 0 auto 1rem;
    font-size: 1.125rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #00aeef;
    color: #fff;
}

.contact h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.contact .btn-primary {
    width: 100%;
    background-color: #053955;
    margin-top: 1rem;
}

.contact .btn-primary:hover {
    background-color: #064a6e;
}

/* Footer */
.footer {
    background-color: #053955;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer a {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .how-it-works .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .header .container {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
    }
}
