/* ================================
   Global Reset & Base Settings
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* ================================
   Typography
=================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
}

/* ================================
   Header Section
=================================== */
header {
    background: #404040;
    padding: 20px 5%;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
}

#title{
    text-decoration: none;
     font-size: 28px;
     color:#fff;
    
}

header h1 {
    font-size: 28px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

nav ul li a:hover {
    color: #007bff;
}

/* ================================
   Main Section
=================================== */
main {
    padding: 40px 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ================================
   Footer Section
=================================== */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

/* ================================
   Buttons
=================================== */
button,
.btn {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

button:hover,
.btn:hover {
    background: #0056b3;
}

/* ================================
   Forms
=================================== */
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
}

input:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* ================================
   Responsive Design
=================================== */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header h1 {
        font-size: 22px;
    }

    section h2 {
        font-size: 20px;
    }
}
