/* Product page specific styles */
.product-page {
    margin-top: 80px;
    background-color: #fff;
}

.product-hero {
    background-color: var(--primary-blue);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.product-icon {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.product-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-content {
    padding: 4rem 5%;
    background-color: white;
}

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

.product-description {
    line-height: 1.8;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.benefit-section {
    display: flex;
    gap: 4rem;
    margin: 4rem 0;
    align-items: center;
}

.benefit-section.reverse {
    flex-direction: row-reverse;
}

.benefit-content {
    flex: 1;
}

.benefit-image {
    flex: 1;
}

.benefit-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.section-heading h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefit-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-section {
    margin: 4rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 600;
    height: 49.54px;
    width: 230.34px;
}

.cta-button:hover {
    background-color: var(--primary-blue-hover);
}

.cta-button.secondary {
    background-color: #2c3e50;
}

.cta-button.secondary:hover {
    background-color: #34495e;
}

/* Responsive design */
@media (max-width: 1024px) {
    .benefit-section {
        gap: 2rem;
    }

    .cta-button {
        height: 47px;
        width: 220px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 3rem 1.5rem;
    }

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

    .intro-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .benefit-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .benefit-section.reverse {
        flex-direction: column;
    }

    .section-heading {
        justify-content: center;
    }

    .benefit-list {
        text-align: left;
    }

    .cta-section {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        height: 45px;
        width: 210px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        height: 43px;
        width: 200px;
    }
} 