/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9fb;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: url('images/header_pic.jpeg') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

header h1 {
    font-size: 3.5em;
    margin: 0;
    font-weight: 600;
    color: #ffffff; /* Keep header text color white */
}

header p {
    margin: 15px 0 30px;
    font-size: 1.2em;
    font-weight: 300;
    color: #ffffff; /* Set "Herontdek de Schoonheid van je Bank" color to white */
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1em;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    background-color: #388e3c;
}

/* Section Titles */
h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Features Section Styles */
#features {
    padding: 40px 0;
}

#features .features {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

#features .feature {
    text-align: center;
    padding: 20px;
    background-color: #e3f2fd; /* Light blue */
    border-radius: 10px;
    flex: 1;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#features .feature img {
    max-width: 80px;
    margin-bottom: 20px;
}

#features .feature h3 {
    font-size: 1.5em;
    color: #1e88e5; /* Darker blue for the text */
    margin-bottom: 10px;
}

/* Services Section Styles */
#services {
    padding: 40px 0;
}

#services .services {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

#services .service {
    text-align: center;
    padding: 20px;
    background-color: #fff3e0; /* Light orange */
    border-radius: 10px;
    flex: 1;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#services .service img {
    max-width: 80px;
    margin-bottom: 20px;
}

#services .service h3 {
    font-size: 1.5em;
    color: #ef6c00; /* Darker orange for the text */
    margin-bottom: 10px;
}

/* Pricing Section Styles */
#pricing {
    padding: 40px 0;
}

#pricing .pricing-tables {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.pricing-table {
    text-align: center;
    padding: 20px;
    background-color: #e8f5e9; /* Light green */
    border-radius: 10px;
    flex: 1;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-table h3 {
    font-size: 1.8em;
    color: #2e7d32;
    margin-bottom: 20px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.pricing-table th, .pricing-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.pricing-table th {
    background-color: #c8e6c9;
    color: #333;
    font-weight: 600;
}

.pricing-table td {
    background-color: #ffffff;
    color: #555;
}

/* Contact Form Styles */
#quote-form {
    text-align: center;
    margin-top: 30px;
}

#quote-form input {
    padding: 15px;
    margin: 10px;
    width: calc(100% - 40px);
    max-width: 400px;
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#quote-form button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

#quote-form button:hover {
    background-color: #388e3c;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer p {
    margin: 5px 0;
    font-weight: 300;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    header p {
        font-size: 1.1em;
    }

    #features .features, #services .services, #pricing .pricing-tables {
        flex-direction: column;
    }
}
