:root {
    --primary-color: #DE3438;
    /* New brand color */
    --primary-hover: #b92a2e;
    --text-dark: #1a1a1a;
    --text-light: #444444;
    --bg-gradient-start: #f8f9fa;
    --bg-gradient-end: #e9ecef;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(243, 108, 33, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 108, 33, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 600px;
    width: 90%;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 40px;
}

.main-logo {
    max-width: 286px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.content {
    margin-bottom: 40px;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-area {
    display: flex;
    justify-content: center;
}

.btn-quote {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(243, 108, 33, 0.3);
}

.btn-quote:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 108, 33, 0.4);
}

.btn-quote:active {
    transform: translateY(0);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .title {
        font-size: 2rem;
    }

    .btn-quote {
        padding: 14px 28px;
        font-size: 1.1rem;
    }
}