/* StradePay\css\aml.css */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.aml-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/aml-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.aml-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.aml-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3498db;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-list {
    list-style-type: none;
    padding-left: 0;
}

.policy-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-list li:before {
    content: "\2022";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-item {
    margin-bottom: 2rem;
}

.policy-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.policy-item ul {
    padding-left: 1.5rem;
}

.policy-item li {
    margin-bottom: 0.5rem;
}

.bg-light {
    background-color: #f8f9fa;
}

#contactForm .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #3498db;
    padding: 0.5rem 0;
}

#contactForm .form-control:focus {
    box-shadow: none;
    border-color: #2980b9;
}

#contactForm .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    border-radius: 0;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s ease;
}

#contactForm .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

@media (max-width: 768px) {
    .aml-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}
