/* Product Pages Modern Styling */
:root {
    --primary-color: #0056b3;
    --secondary-color: #00a0e3;
    --accent-color: #ff6b00;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --text-color: #333;
    --light-text: #fff;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 15px) rotate(5deg); }
    50% { transform: translate(5px, -10px) rotate(0deg); }
    75% { transform: translate(-10px, 15px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Enhanced Hero Section */
.product-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
    padding: 120px 0 80px;
    color: var(--light-text);
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,107,0,0.8) 0%, rgba(255,107,0,0) 70%);
    bottom: -50px;
    left: 10%;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 70%);
    top: 20%;
    left: 20%;
    animation: float 10s ease-in-out infinite 2s;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.product-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.product-hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.product-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* Product Overview Section */
.product-overview {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.product-overview-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.product-overview-text {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.2s;
}

.product-overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
}

.product-overview-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.product-overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.product-overview-image {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.4s;
}

.product-overview-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.product-overview-image img:hover {
    transform: scale(1.02);
}

/* Product Features Section */
.product-features {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.product-features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 70%);
    z-index: 0;
}

.product-features::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0) 70%);
    z-index: 0;
}

.product-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    z-index: 1;
}

.product-features h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto 0;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 0;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.product-feature-card:nth-child(1) { animation-delay: 0.1s; }
.product-feature-card:nth-child(2) { animation-delay: 0.2s; }
.product-feature-card:nth-child(3) { animation-delay: 0.3s; }
.product-feature-card:nth-child(4) { animation-delay: 0.4s; }
.product-feature-card:nth-child(5) { animation-delay: 0.5s; }
.product-feature-card:nth-child(6) { animation-delay: 0.6s; }

.product-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.product-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all var(--transition-speed);
    position: relative;
    z-index: 2;
}

.feature-content {
    padding: 0 30px 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-feature-card:hover .feature-overlay {
    opacity: 0.03;
}

.product-feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.product-feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.product-feature-card:hover h3 {
    color: var(--accent-color);
}

.product-feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Why Choose Section */
.product-why-choose {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.product-why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 160, 227, 0.2) 0%, rgba(0, 160, 227, 0) 70%);
    border-radius: 50%;
}

.product-why-choose::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
}

.product-why-choose-content {
    position: relative;
    z-index: 1;
}

.product-why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.product-why-choose h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto 0;
}

.product-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-choose-item:hover .why-choose-bg {
    opacity: 0.03;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all var(--transition-speed);
    position: relative;
}

.why-choose-item:hover .why-choose-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(360deg);
}

.why-choose-text {
    flex: 1;
}

.why-choose-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: color var(--transition-speed);
    position: relative;
}

.why-choose-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.why-choose-item:hover .why-choose-text h3::after {
    width: 40px;
}

.why-choose-item:hover .why-choose-text h3 {
    color: var(--accent-color);
}

.why-choose-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-top: 15px;
}

/* CTA Section */
.product-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: float 15s infinite alternate ease-in-out;
}

.product-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: float 20s infinite alternate-reverse ease-in-out;
}

.product-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.product-cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.product-cta:hover h2::after {
    width: 120px;
}

.product-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--light-text);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--light-text);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--light-text);
    border-color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before {
    transform: translateX(0);
}

/* Button Styles */
.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-text);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Compliance Page Styles */
.compliance-overview,
.regulator-universe,
.compliance-documents {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.compliance-overview::before,
.regulator-universe::before,
.compliance-documents::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 70%);
    z-index: 0;
}

.compliance-overview::after,
.regulator-universe::after,
.compliance-documents::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0) 70%);
    z-index: 0;
}

.compliance-overview h2,
.regulator-universe h2,
.compliance-documents h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.compliance-overview h2::after,
.regulator-universe h2::after,
.compliance-documents h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto 0;
}

.compliance-text,
.compliance-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.compliance-text p,
.compliance-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.regulator-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.regulator-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
}

.regulator-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.regulator-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
}

.regulator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.regulator-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.regulator-item:hover .regulator-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(360deg);
}

.regulator-item p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

/* Document Grid */
.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.document-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.document-card:hover::before {
    transform: scaleX(1);
}

.document-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all var(--transition-speed);
    position: relative;
    z-index: 2;
}

.document-content {
    position: relative;
    z-index: 2;
}

.document-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.document-card:hover .document-overlay {
    opacity: 0.03;
}

.document-card:hover .document-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.document-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.document-card:hover h3 {
    color: var(--accent-color);
}

.document-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-speed);
    margin-top: 15px;
}

.document-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Compliance Contact Section */
.compliance-contact {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.compliance-contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 160, 227, 0.2) 0%, rgba(0, 160, 227, 0) 70%);
    border-radius: 50%;
}

.compliance-contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
}

.compliance-contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.compliance-contact-info {
    flex: 1;
    min-width: 300px;
}

.compliance-contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
}

.compliance-contact-info h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.compliance-officer-details {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.compliance-officer-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.compliance-officer-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.compliance-officer-details a:hover {
    color: var(--accent-color);
}

.compliance-contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-hero h1 {
        font-size: 2.8rem;
    }
    
    .product-overview-content {
        flex-direction: column;
    }
    
    .product-overview-text,
    .product-overview-image {
        width: 100%;
    }
    
    .compliance-contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 80px 0 60px;
    }
    
    .product-hero h1 {
        font-size: 2.2rem;
    }
    
    .product-hero p {
        font-size: 1.1rem;
    }
    
    .product-features h2,
    .product-why-choose h2,
    .product-overview-text h2 {
        font-size: 2rem;
    }
    
    .product-features,
    .product-overview,
    .product-why-choose,
    .product-cta {
        padding: 60px 0;
    }
    
    .why-choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Two-Pot Calculator Styles */
.calculator-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.calculator-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 70%);
    z-index: 0;
}

.calculator-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0) 70%);
    z-index: 0;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.calculator-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.calculator-header {
    margin-bottom: 30px;
    text-align: center;
}

.calculator-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.calculator-header p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.input-field {
    width: 100%;
    padding: 12px 15px 12px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.input-field:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
    outline: none;
}

.calculate-button {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calculator-icon {
    transition: transform 0.3s ease;
}

.calculate-button:hover .calculator-icon {
    transform: translateY(-3px);
}

.results-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-card {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-speed);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.result-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.result-card.highlight .result-label,
.result-card.highlight .result-value,
.result-card.highlight .result-icon {
    color: white;
}

.result-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
}

.result-card.highlight .result-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.result-content {
    flex: 1;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.result-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.assistance-card {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.assistance-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.assistance-icon {
    color: var(--primary-color);
}

.assistance-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.assistance-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 25px;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.blog-categories {
    padding: 30px 0 20px;
    background-color: var(--light-bg);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.blog-categories h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
}

.blog-categories h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-btn {
    padding: 8px 20px;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.category-btn:hover, 
.category-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-posts {
    padding: 50px 0 70px;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
    font-family: helvetica-w01-roman, sans-serif;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-category {
    display: inline-block;
    padding: 3px 12px;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.blog-card:hover .blog-category {
    background-color: var(--primary-color);
    color: #fff;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color var(--transition-speed);
    font-family: helvetica-w01-roman, sans-serif;
}

.blog-card:hover h3 {
    color: var(--accent-color);
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.blog-card-footer {
    margin-top: auto;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-family: helvetica-w01-roman, sans-serif;
    margin-top: 15px;
}

.read-more:hover {
    color: var(--accent-color);
    gap: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-color);
    font-weight: 500;
    transition: all var(--transition-speed);
    padding: 0 15px;
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-color);
    transition: all var(--transition-speed);
}

.pagination-arrow:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.newsletter {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 70%);
    z-index: 0;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0) 70%);
    z-index: 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
    font-family: helvetica-w01-roman, sans-serif;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments for Blog */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .category-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .category-btn {
        flex-shrink: 0;
    }
}

.cta-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.info-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    text-align: center;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.info-card:hover .info-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .calculator-card,
    .assistance-card {
        padding: 25px;
    }
    
    .cta-row {
        flex-direction: column;
    }
    
    .result-card {
        padding: 15px;
    }
    
    .result-value {
        font-size: 1.1rem;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation for Chat Button */
.chat-button {
    animation: pulse 2s infinite;
}

/* Enhance SVG Icons */
.feature-icon svg,
.why-choose-icon svg {
    transition: all var(--transition-speed);
}

.product-feature-card:hover .feature-icon svg,
.why-choose-item:hover .why-choose-icon svg {
    transform: scale(1.2);
}
