* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f1419; /* X dark background */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Quote Card */
.quote-box {
    background: #16181c;
    width: 700px; /* desktop size maintained */
    max-width: 100%;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Heading */
.quote-box h2 {
    color: #e7e9ea;
    font-size: 30px;
    margin-bottom: 35px;
    position: relative;
}

.quote-box h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #1d9bf0;
    border-radius: 5px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Quote Text */
blockquote {
    font-size: 24px;
    color: #e7e9ea;
    line-height: 1.5;
    min-height: 100px;
}

blockquote::before,
blockquote::after {
    content: '"';
}

/* Author */
span {
    display: block;
    margin-top: 15px;
    color: #8899a6;
    font-size: 14px;
    text-align: right;
}

/* Buttons */
.btn-group {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

button {
    height: 48px;
    padding: 0 22px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* Primary Button */
.primary {
    background: #1d9bf0;
    color: #fff;
    border: none;
}

.primary:hover {
    background: #1a8cd8;
}

/* Outline Button */
.outline {
    background: transparent;
    border: 1px solid #1d9bf0;
    color: #e7e9ea;
}

.outline img {
    width: 18px;
    margin-right: 8px;
}

.outline:hover {
    background: rgba(29, 155, 240, 0.1);
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .quote-box {
        padding: 28px;
    }

    blockquote {
        font-size: 20px;
    }

    .btn-group {
        margin-top: 35px;
    }
}
