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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 3.2em;
    line-height: 1.2;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5em;
    line-height: 1.2;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8em;
    line-height: 1.2;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a365d;
}

.header-phone {
    color: #d69e2e;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1em;
    padding: 0.5rem 1rem;
    border: 2px solid #d69e2e;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: #d69e2e;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 5rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3em;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item img {
    width: 24px;
    height: 24px;
}

.feature-item span {
    font-weight: 600;
    color: #2d3748;
}

.cta-button {
    background: #d69e2e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #b7791f;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: #1a365d;
}

.cta-button.secondary:hover {
    background: #2c5282;
}

.hero-image, .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img, .about-img, .risk-img, .membership-img, .contact-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover, .about-img:hover, .risk-img:hover, .membership-img:hover, .contact-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.2em;
    color: #718096;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #d69e2e;
}

.stat-label {
    font-size: 0.9em;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f7fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

/* Risk Engine Section */
.risk-engine {
    padding: 5rem 0;
    background: #1a365d;
    color: white;
}

.risk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.risk-engine h2 {
    color: white;
}

.risk-engine p {
    color: #cbd5e0;
}

.risk-features {
    list-style: none;
    margin: 2rem 0;
}

.risk-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #cbd5e0;
}

.risk-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d69e2e;
    font-weight: bold;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #d69e2e;
    transform: translateY(-5px);
}

.product-card.featured {
    border-color: #d69e2e;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d69e2e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-price {
    font-size: 1.5em;
    font-weight: 700;
    color: #d69e2e;
    margin-top: 0.5rem;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d69e2e;
    font-weight: bold;
}

.product-button {
    width: 100%;
    background: #1a365d;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: #2c5282;
}

/* Membership Section */
.membership {
    padding: 5rem 0;
    background: #f7fafc;
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.membership-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Trust Section */
.trust {
    padding: 5rem 0;
    background: #ffffff;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item a {
    color: #d69e2e;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item address {
    font-style: normal;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-info p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.footer-contact a {
    color: #d69e2e;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d69e2e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    .hero .container,
    .about-content,
    .risk-content,
    .membership-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .stats {
        justify-content: center;
    }

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

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

    .product-card.featured {
        transform: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-contact {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-img, .about-img, .risk-img, .membership-img, .contact-img {
        height: 250px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero {
        padding: 3rem 0;
    }

    .feature-card,
    .product-card {
        padding: 2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-img, .about-img, .risk-img, .membership-img, .contact-img {
        height: 200px;
        border-radius: 8px;
    }
}