

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff; /* Keep the all-white look */
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow around the header */
    border-radius: 8px;
}

header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #0c4b6e; /* Accent color for header */
    margin-bottom: 10px;
}

.cursive{
    font-family: cursive, Sans-serif ;
    font-size: 2em;
}
.big{
    font-size: 4em;

}

header p {
    font-size: 1.2rem;
    color: #555;
}

/* Main Section */
.main {
    margin-bottom: 40px;
}

/* Individual Sections */
section {
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Light shadow around sections */
    border-radius: 8px;
}

section h2 {
    color: #0c4b6e;
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px; /* Letter spacing for modern feel */
}

section p, section ul {
    font-size: 1.1rem;
    color: #555;
}

ul {
    list-style-type: none;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Personal Message Section */
section p strong {
    font-weight: bold;
    color: #333;
}

/* Aesthetic for 'Message From Me' */
section:last-of-type {
    background-color: #f9f9f9; /* Slightly different background to separate the message */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

section:last-of-type p {
    font-size: 1.1rem;
    color: #555;
}

/* Contact Section */
.contact-us {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.contact-us a {
    color: #ff7a00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-us a:hover {
    color: #f1a400; /* Light orange */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

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