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

/* --- Base Styles --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6; /* Soft, calming light gray/blue background */
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

/* --- Layout Container --- */
.container {
    background-color: #ffffff;
    max-width: 800px;
    width: 100%;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 6px solid #1e3a8a; /* Trustworthy navy blue accent */
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

.logo span {
    color: #64748b; /* Lighter gray for the domain extension */
    font-weight: 400;
}

/* --- Main Content --- */
.main-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* --- Contact Section --- */
.contact-info {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #334155;
}

.contact-button {
    display: inline-block;
    background-color: #1e3a8a; /* Navy blue button */
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #1e40af; /* Slightly lighter blue on hover */
}

.phone-number {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    font-size: 18px !important;
}

/* --- Footer --- */
.footer {
    font-size: 14px;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    .container {
        padding: 40px 20px;
    }

    .main-content h1 {
        font-size: 32px;
    }

    .main-content p {
        font-size: 16px;
    }
}