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

body {
    font-family: 'Georgia', serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #8b2742;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.header-text {
    font-size: 18px;
    letter-spacing: 8px;
    font-weight: 300;
}

main {
    flex: 1;
    padding: 40px 20px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo Section */
.logo-section {
    text-align: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.logo {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-name {
    font-size: 47px;
    color: #8b2742;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.service-text {
    font-size: 24px;
    color: #333;
    font-weight: 300;
    letter-spacing: 6px;
}

/* Form Intro */
.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

/* Form Styles with Bootstrap */
form {
    margin-top: 30px;
}

.col-form-label {
    color: #666;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    padding-top: 10px;
    text-align: right;
}
.col-form-label span{
    color: red;
}
.form-control,
.form-select {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 4px;
    font-family:"avenir-lt-pro";
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: #8b2742;
    box-shadow: 0 0 0 0.2rem rgba(139, 39, 66, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    cursor: pointer;
}

.submit-btn {
    background-color: #8b2742;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #6d1f34;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Footer */
footer {
    background-color: #8b2742;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.phone-number {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.copyright {
    font-size: 13px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-text {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .container {
        padding: 30px 20px;
    }

    .logo-circle {
        width: 110px;
        height: 110px;
        border: 6px solid #000;
    }

    .logo-section{
        margin-bottom: 10px;
    }

    .company-name {
        font-size: 32px;
    }

    .service-text {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .phone-number {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .col-form-label {
        text-align: left;
        font-size: 12px;
        padding-top: 0;
        margin-bottom: 5px;
    }

    .form-intro {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .header-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .container {
        padding: 20px 15px;
    }

    .logo-section{
        width: 70%;
        margin-bottom: 10px;
    }

    .company-name {
        font-size: 26px;
    }

    .service-text {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .phone-number {
        font-size: 20px;
    }

    .copyright {
        font-size: 11px;
    }

    .form-control,
    .form-select {
        font-size: 13px;
        padding: 8px 12px;
    }

    .form-intro {
        font-size: 13px;
    }
}

@media screen and (max-width: 370px) {
    .logo-section{
        width: 90%;
    }
    .company-name{
        font-size: 26px;
    }
}