/* 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 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(27, 67, 50, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1B4332;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1B4332 0%, #2D5016 100%);
    color: white;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #E8D5B7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00C9A7;
    color: white;
}

.btn-primary:hover {
    background-color: #00B096;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid #00C9A7;
}

.btn-secondary:hover {
    background-color: #00C9A7;
    transform: translateY(-2px);
}

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

.hero-dashboard-image,
.integration-image-display,
.risk-image-display {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.hero-dashboard-image {
    max-width: 450px;
    max-height: 300px;
}

.integration-image-display {
    max-width: 400px;
    max-height: 280px;
}

.risk-image-display {
    max-width: 400px;
    max-height: 280px;
}

.placeholder-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B4332;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* Standards Section */
.standards {
    background-color: #F8F9FA;
    text-align: center;
}

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

.standard-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.1);
    transition: transform 0.3s ease;
}

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

.standard-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.standard-card h3 {
    font-size: 1.4rem;
    color: #1B4332;
    margin-bottom: 12px;
    font-weight: 600;
}

.standard-card p {
    color: #666;
    line-height: 1.5;
}

/* Features Section */
.features {
    background-color: white;
    text-align: center;
}

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

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

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Integration Section */
.integration {
    background-color: #F8F9FA;
    text-align: center;
}

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

.integration-text h3 {
    font-size: 2rem;
    color: #1B4332;
    margin-bottom: 20px;
    font-weight: 600;
}

.integration-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.integration-list {
    list-style: none;
}

.integration-list li {
    padding: 8px 0;
    color: #1B4332;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
}

.integration-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00C9A7;
    font-weight: bold;
}

/* Products Section */
.products {
    background-color: white;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border-radius: 12px 12px 0 0;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #1B4332;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.product-card p {
    color: #666;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.product-price {
    margin: 0 24px 20px;
    text-align: center;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 4px;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.product-features ul {
    list-style: none;
    margin: 0 24px 24px;
}

.product-features li {
    padding: 6px 0;
    color: #1B4332;
    position: relative;
    padding-left: 20px;
}

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

.product-card .btn {
    margin: 0 24px 24px;
    display: inline-block;
}

/* Risk Management Section */
.risk-management {
    background-color: #F8F9FA;
    text-align: center;
}

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

.risk-text h3 {
    font-size: 2rem;
    color: #1B4332;
    margin-bottom: 20px;
    font-weight: 600;
}

.risk-text > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.risk-features {
    display: grid;
    gap: 24px;
}

.risk-feature h4 {
    font-size: 1.2rem;
    color: #1B4332;
    margin-bottom: 8px;
    font-weight: 600;
}

.risk-feature p {
    color: #666;
    line-height: 1.5;
}

/* Evidence Trails Section */
.evidence-trails {
    background-color: white;
    text-align: center;
}

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

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

.evidence-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.evidence-item h3 {
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 16px;
    font-weight: 600;
}

.evidence-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contacts Section */
.contacts {
    background-color: #F8F9FA;
}

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

.contact-info h3 {
    font-size: 2rem;
    color: #1B4332;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 24px;
}

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

.contact-icon {
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    color: #1B4332;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text a {
    color: #00C9A7;
    text-decoration: none;
}

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

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

.contact-form h3 {
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00C9A7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    color: #00C9A7;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-section a {
    color: #E8D5B7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00C9A7;
}

.footer-bottom {
    border-top: 1px solid #2D5016;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #E8D5B7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-dashboard-image {
        max-width: 100%;
        max-height: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .integration-content,
    .risk-content,
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .standards-grid,
    .features-grid,
    .products-grid,
    .evidence-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 24px;
    }
}