   * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .quote-page-wrapper {
        position: relative;
        background: #e6f2de;
        min-height: 100vh;
        padding: 100px 20px 80px;
        overflow: hidden;
    }

    .quote-page-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 50%, rgba(255, 59, 48, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(0, 122, 255, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

    .floating-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
    }

    .shape {
        position: absolute;
        opacity: 0.05;
        animation: float 20s infinite ease-in-out;
    }

    .shape:nth-child(1) {
        top: 10%;
        left: 10%;
        width: 300px;
        height: 300px;
        background: #ff3b30;
        border-radius: 50%;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        top: 60%;
        right: 10%;
        width: 200px;
        height: 200px;
        background: #007aff;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        animation-delay: 5s;
    }

    .shape:nth-child(3) {
        bottom: 10%;
        left: 50%;
        width: 250px;
        height: 250px;
        background: #34c759;
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
        animation-delay: 10s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg);
        }

        33% {
            transform: translate(30px, -50px) rotate(120deg);
        }

        66% {
            transform: translate(-20px, 20px) rotate(240deg);
        }
    }

    .quote-container {
        max-width: 1300px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .quote-header {
        text-align: center;
        color: #1c1c1e;
        margin-bottom: 70px;
        animation: fadeInDown 0.8s ease-out;
    }

    .quote-header h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #1c1c1e;
        letter-spacing: -1px;
    }

    .quote-header p {
        font-size: 22px;
        color: #6e6e73;
        font-weight: 400;
    }

    .quote-content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        align-items: start;
    }

    .quote-info {
        animation: fadeInLeft 0.8s ease-out;
    }

    .info-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 35px;
        margin-bottom: 25px;
        border: 1px solid #e5e5ea;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #ff3b30, #ff9500);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-5px);
        border-color: #ff3b30;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        background-color: #faf3da;
    }

    .info-card:hover::before {
        opacity: 1;
    }

    .info-card-content {
        position: relative;
        z-index: 1;
    }

    .info-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 700;
        color: #1c1c1e;
    }

    .info-card .icon {
        font-size: 36px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    .info-card p {
        font-size: 16px;
        line-height: 1.7;
        color: #6e6e73;
        font-weight: 400;
    }

    .quote-form-wrapper {
        background: #ffffff;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        animation: fadeInRight 0.8s ease-out;
        border: 1px solid #e5e5ea;
    }

    .quote-form-wrapper h2 {
        font-size: 36px;
        margin-bottom: 10px;
        color: #1c1c1e;
        font-weight: 800;
    }

    .quote-form-wrapper .subtitle {
        color: #6e6e73;
        margin-bottom: 35px;
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 28px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1c1c1e;
        font-size: 15px;
    }

    .form-group label .required {
        color: #ff3b30;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 16px 18px;
        border: 2px solid #e5e5ea;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        font-family: inherit;
        background: #ffffff;
        color: #1c1c1e;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #ff3b30;
        box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
        background: #ffffff;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 130px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .submit-btn {
        width: 100%;
        padding: 18px;
        background: linear-gradient(135deg, #ff3b30 0%, #ff9500 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 15px;
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
    }

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .submit-btn:hover::before {
        left: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(255, 59, 48, 0.3);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @media (max-width: 1024px) {
        .quote-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .quote-header h1 {
            font-size: 44px;
        }
    }

    @media (max-width: 768px) {
        .quote-page-wrapper {
            padding: 60px 15px;
        }

        .quote-header h1 {
            font-size: 36px;
        }

        .quote-header p {
            font-size: 18px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .quote-form-wrapper {
            padding: 35px 25px;
        }

        .quote-form-wrapper h2 {
            font-size: 28px;
        }

        .info-card {
            padding: 28px;
        }

        .info-card:hover {
            transform: translateX(0) translateY(-5px);
        }
    }

    @media (max-width: 480px) {
        .quote-header h1 {
            font-size: 28px;
        }

        .info-card h3 {
            font-size: 20px;
        }

        .quote-form-wrapper h2 {
            font-size: 24px;
        }

        .shape {
            display: none;
        }
    }