/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
}

header {
    background-color: #e2be6f;
    color: white;
    text-align: center;
    padding: 20px;
}

.header-content h1 {
    margin: 0;
    font-size: 2rem;
}

.header-content p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.container {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #444;
}

.details-section {
    margin: 20px auto;
    text-align: center;
    max-width: 600px;
}

.details-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-decoration: underline;
    text-align: center;
    color: #333;
}

.details-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
}

.details-list li {
    margin-bottom: 10px;
}

.highlight {
    background-color: yellow;
    font-weight: bold;
}

.contact-info {
    font-size: 1.2rem;
    margin-top: 20px;
}

.contact-number {
    font-size: 1.5rem;
    color: black;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.8rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .details-title {
        font-size: 1.3rem;
    }

    .contact-info {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.5rem;
    }

    .header-content p {
        font-size: 0.9rem;
    }

    .details-list li {
        font-size: 0.9rem;
    }

    .contact-number {
        font-size: 1.2rem;
    }
}
