﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.5;
}

.container {
    max-width: 600px;
    margin: 15px auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    padding: 35px 20px 0px 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo {
    max-height: 50px;
    margin-right: 15px;
}

.company-name {
    font-size: 28px;
    font-weight: 700;
    color: #00538d;
    margin: 0;
}

.tagline {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

/* Content Styles */
.content {
    padding: 20px;
}

.greeting {
    font-size: 16px;
    color: #00538d;
    margin-bottom: 15px;
    font-weight: 600;
}

.message {
    font-size: 14px;
    margin-bottom: 15px;
    color: #444;
}

.page-title {
    font-size: 24px;
    color: #00538d;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.highlight {
    color: #ef3e33;
    font-weight: 600;
}

/* Feature Box Styles */
.feature-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid #ef3e33;
}

    .feature-box h3 {
        color: #00538d;
        margin-top: 0;
        font-size: 18px;
    }

    .feature-box p {
        margin-bottom: 0;
        font-size: 14px;
    }

/* Button Styles */
.cta-container, .btn-container {
    text-align: center;
    margin: 20px 0;
}

.cta-button, .btn {
    display: inline-block;
    background-color: #ef3e33;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(239, 62, 51, 0.2);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

    .cta-button:hover, .btn:hover {
        background-color: #d63229;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(239, 62, 51, 0.3);
    }

.btn-secondary {
    background-color: #00538d;
    box-shadow: 0 4px 8px rgba(0, 83, 141, 0.2);
    margin-left: 10px;
}

    .btn-secondary:hover {
        background-color: #004474;
        box-shadow: 0 6px 12px rgba(0, 83, 141, 0.3);
    }

/* Contact Info Styles */
.contact-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

    .contact-info p {
        margin: 0 0 8px;
        font-size: 15px;
    }

    .contact-info .phone {
        font-size: 18px;
        font-weight: 700;
        color: #00538d;
        margin: 8px 0;
    }

/* Form Styles */
.form-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        color: #00538d;
    }

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    resize: none;
}

/* Signature Styles */
.signature {
    margin-top: 20px;
    font-style: italic;
    color: #555;
    font-size: 14px;
}

    .signature .company {
        font-weight: 700;
        color: #00538d;
        font-style: normal;
    }

/* Footer Styles */
.footer {
    background-color: #00538d;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-size: 12px;
}

    .footer a {
        color: #ffffff;
        text-decoration: underline;
    }

    .footer p {
        margin: 0 0 8px;
    }

.divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 10px 0;
}

/* Success Message */
.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

#errorMessage {
    display: none;
    color: red;
}
