/* Reset basic margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
    padding: 40px 20px;
    line-height: 1.6;
}

/* Layout container */
.container {
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Logo styling */
.header {
    margin-bottom: 40px;
}

.logo {
    width: 120px;
    height: auto;
}

/* Hero Section */
.hero {
    margin-bottom: 60px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* About Section */
.about {
    border-top: 1px solid #ddd;
    padding-top: 40px;
    margin-top: 40px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about p {
    font-size: 1rem;
    color: #555;
}
