/* Soft Minimalist Style */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
    padding: 40px;
    text-align: center;
}
a {
    color: #4a90e2;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
a:hover {
    color: #357ABD;
}
h1, h2 {
    margin-bottom: 15px;
    font-weight: 600;
}
p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Header Styling */
header {
    background: #ffffff;
    color: #4a90e2;
    padding: 50px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
}
header h1 {
    font-size: 2.5em;
}
header p {
    font-size: 1.3em;
    opacity: 0.7;
}

/* Section Styling */
section {
    background: #ffffff;
    padding: 40px;
    margin: 30px auto;
    width: 85%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    border-left: 5px solid #4a90e2;
}
section h2 {
    color: #4a90e2;
    font-size: 1.8em;
}

/* Footer Styling */
footer {
    background: #ffffff;
    color: #4a90e2;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}
footer a {
    font-weight: 500;
    margin: 0 12px;
    color: #4a90e2;
}
footer a:hover {
    text-decoration: underline;
    color: #357ABD;
}

/* Soft Buttons */
.button {
    display: inline-block;
    padding: 12px 28px;
    background: #4a90e2;
    color: #ffffff;
    border-radius: 8px;
    text-transform: capitalize;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border: none;
}
.button:hover {
    background: #357ABD;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.modal h2 {
    color: #4a90e2;
}
.modal button {
    background: #4a90e2;
    color: #ffffff;
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.modal button:hover {
    background: #357ABD;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 25px;
    }
    header, footer {
        padding: 35px;
    }
    section {
        padding: 30px;
    }
}
