/* 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: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #1a365d;
    color: white;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.btn-secondary {
    background-color: #16a085;
    color: white;
}

.btn-secondary:hover {
    background-color: #138d75;
}

.btn-product {
    background-color: #f97316;
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-product:hover {
    background-color: #ea580c;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* Image Placeholders */
.image-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

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

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image .image-placeholder {
    height: 300px;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: white;
}

/* Hero Disclaimer */
.hero-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.hero-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Section Intro */
.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Security Notice */
.security-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.security-notice p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Product Disclaimer */
.product-disclaimer {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.product-disclaimer p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Image Styling */
.hero-image img,
.compliance-image img,
.trust-image img,
.content-image img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover,
.compliance-image img:hover,
.trust-image img:hover,
.content-image img:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.product-image img,
.member-image img {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img,
.team-member:hover .member-image img {
    transform: scale(1.02);
}

/* Security First Section */
.security-first {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.security-first h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.security-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.security-card h3 {
    color: #1a365d;
    margin-bottom: 16px;
}

/* Compliance Section */
.compliance {
    padding: 80px 0;
}

.compliance h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
}

.compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.compliance-list {
    list-style: none;
    margin-top: 30px;
}

.compliance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.list-icon {
    width: 20px;
    height: 20px;
}

.compliance-image .image-placeholder {
    height: 300px;
}

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

.technology h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.tech-card h3 {
    color: #1a365d;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.product-image .image-placeholder {
    height: 200px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    color: #1a365d;
    margin-bottom: 16px;
}

.product-features {
    list-style: none;
    margin: 20px 0 30px 0;
}

.product-features li {
    padding: 4px 0;
    color: #16a085;
    font-weight: 500;
}

.product-features li:before {
    content: "✓ ";
    margin-right: 8px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.reason-card h3 {
    color: #1a365d;
    margin-bottom: 12px;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 80px 0;
}

.trust-indicators h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #16a085;
    margin-bottom: 8px;
}

.stat p {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}

.trust-image .image-placeholder {
    height: 300px;
}

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

.contacts h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

.contact-item h3 {
    color: #1a365d;
    margin-bottom: 8px;
}

.contact-item a {
    color: #16a085;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1a365d;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #16a085;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

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

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #16a085;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .hero-image img,
    .compliance-image img,
    .trust-image img,
    .content-image img {
        height: 250px;
        border-radius: 8px;
    }
    
    .product-image img,
    .member-image img {
        height: 180px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .compliance-content,
    .trust-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-brand {
        margin-bottom: 20px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
}