/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.8;
}

/* Header */
header {
    background-color: #ff7f50;
    color: white;
    text-align: center;
    padding: 50px 20px;
    border-bottom: 5px solid #ffc8b0;
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: 600;
}

header p {
    font-size: 1.3em;
}

/* Sections */
section {
    margin: 40px auto;
    padding: 20px 30px;
    max-width: 800px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2em;
    color: #ff7f50;
    margin-bottom: 15px;
    font-weight: 600;
}

section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: disc;
}

ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

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

footer a {
    color: #ff7f50;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* Buttons and Links */
a {
    color: #ff7f50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

    header p {
        font-size: 1.1em;
    }

    section h2 {
        font-size: 1.8em;
    }

    section p, ul li {
        font-size: 1em;
    }
}
