.quote-header {
            background: linear-gradient(45deg, #3a3d74, #e31e24);
            padding: 100px 0 60px;
            color: white;
            text-align: center;
        }

        .quote-form-container {
            background: #fff;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
        }

        .form-label {
            font-weight: 700;
            color: #3a3d74;
            margin-bottom: 10px;
        }

        .form-control {
            padding: 12px 20px;
            border-radius: 12px;
            border: 1px solid #ddd;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: #3a3d74;
            box-shadow: 0 0 10px rgba(58, 61, 116, 0.1);
        }

        .submit-quote-btn {
            background: #3a3d74;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 800;
            border: none;
            width: 100%;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-quote-btn:hover {
            background: #e31e24;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
        }

        .contact-info-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 20px;
            height: 100%;
            border-left: 5px solid #3a3d74;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-item i {
            width: 40px;
            height: 40px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #e31e24;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }