/* ===========================
   GENERAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #8b7355;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --accent-gold: #ffd700;
    --accent-rose: #c9ada7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* Text Styles */
.fancy-text {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

.elegant-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.bold-text {
    font-weight: 600;
}

.light-text {
    font-weight: 300;
}

.italic-text {
    font-style: italic;
}

/* ===========================
   MUSIC TOGGLE (FLOATING)
   =========================== */
.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.music-toggle.playing {
    animation: pulse 2s infinite;
}

.music-toggle.paused {
    opacity: 0.6;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.8);
    }
}

/* ===========================
   1. COVER SECTION
   =========================== */
.cover-section {
    height: 100vh;
    background: url('../assets/images/bg-cover.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(139,115,85,0.4));
    z-index: 1;
}

.cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.cover-title {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.cover-names {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.cover-date {
    font-size: 1.5rem;
    letter-spacing: 8px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

.btn-open {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-open:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ===========================
   2. HERO SECTION
   =========================== */
.hero-section {
    min-height: 100vh;
    background: url('../assets/images/couple-photo.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.couple-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.couple-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.wedding-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
}

.date-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.date-month {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.date-year {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===========================
   3. BISMILLAH SECTION
   =========================== */
.bismillah-section {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.initial-names {
    font-size: 8rem;
    color: var(--primary-color);
    font-family: 'Great Vibes', cursive;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ampersand {
    font-size: 4rem;
    color: var(--secondary-color);
}

.holy-verse {
    max-width: 700px;
    margin: 0 auto;
}

.verse-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.verse-source {
    font-size: 1rem;
    color: var(--secondary-color);
}

/* ===========================
   4 & 5. COUPLE INFO SECTIONS
   =========================== */
.couple-info-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

.couple-card {
    max-width: 500px;
    margin: 0 auto;
}

.couple-shape {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.couple-shape::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
}

.couple-photo-small {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
}

.couple-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.couple-name {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.couple-parents {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ===========================
   6. COUNTDOWN SECTION
   =========================== */
.countdown-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.countdown-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.countdown-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.countdown-slide.active {
    opacity: 1;
}

.countdown-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.countdown-content {
    text-align: center;
    color: white;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--accent-gold);
}

.countdown-timer {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    min-width: 100px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.time-label {
    font-size: 1rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-calendar {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-calendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ===========================
   7 & 8. LOCATION SECTIONS
   =========================== */
.location-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.location-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.location-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-divider {
    font-size: 2rem;
    color: var(--accent-gold);
    margin: 20px 0;
}

.location-date {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.location-time {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.location-address {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-maps:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* ===========================
   9. LIVE STREAMING
   =========================== */
.streaming-section {
    position: relative;
    padding: 100px 20px;
    background: url('../assets/images/bg-cover.png') center/cover no-repeat;
    background-attachment: fixed;
}

.streaming-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.streaming-card {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
}

.streaming-desc {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.btn-streaming {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-streaming:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* ===========================
   10. GALLERY
   =========================== */
.gallery-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.gallery-section .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===========================
   11. LOVE STORY
   =========================== */
.story-section {
    padding: 100px 20px;
    background: var(--bg-dark);
    color: white;
}

.story-section .section-title {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 60px;
}

.story-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.story-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.story-item:nth-child(even) {
    flex-direction: row-reverse;
}

.story-date {
    flex: 0 0 200px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.story-date i {
    font-size: 2rem;
}

.story-date span {
    font-size: 1.1rem;
    font-weight: 600;
}

.story-content {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.story-content h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.story-content p {
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* Continue in next part... */
/* ===========================
   12. GIFT SECTION
   =========================== */
.gift-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.gift-section .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.gift-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
    color: var(--text-dark);
}

.gift-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gift-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
}

.gift-method {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bank-logo {
    height: 60px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logo img {
    max-height: 100%;
    max-width: 150px;
}

.account-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0;
    letter-spacing: 2px;
}

.account-name {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.btn-copy {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-copy.copied {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

/* ===========================
   13. RSVP & COMMENTS SECTION
   =========================== */
.rsvp-section {
    position: relative;
    padding: 100px 20px;
    background: url('../assets/images/bg-cover.png') center/cover no-repeat;
    background-attachment: fixed;
}

.rsvp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}

.rsvp-card {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    padding: 50px 40px;
    border-radius: 30px;
}

.rsvp-card .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rsvp-count {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rsvp-form {
    margin-bottom: 50px;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.rsvp-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Comments List */
.comments-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.comment-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-name {
    font-weight: 600;
    color: var(--text-dark);
}

.comment-status {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-hadir {
    color: #27ae60;
}

.status-tidak-hadir {
    color: #e74c3c;
}

.status-masih-ragu {
    color: #f39c12;
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.comment-time {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Custom Scrollbar */
.comments-list::-webkit-scrollbar {
    width: 8px;
}

.comments-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* ===========================
   14. THANK YOU SECTION
   =========================== */
.thankyou-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    text-align: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-photo {
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thankyou-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thankyou-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thankyou-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.thankyou-closing {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thankyou-names {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* ===========================
   15. FOOTER
   =========================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-text {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-text i {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

.footer-text a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .cover-names {
        font-size: 2.5rem;
    }

    .cover-date {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .date-number,
    .date-year {
        font-size: 2.5rem;
    }

    .date-month {
        font-size: 1.2rem;
    }

    .initial-names {
        font-size: 5rem;
    }

    .ampersand {
        font-size: 2.5rem;
    }

    .couple-name {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .countdown-timer {
        gap: 15px;
    }

    .time-number {
        font-size: 2.5rem;
        min-width: 70px;
        padding: 15px;
    }

    .time-label {
        font-size: 0.85rem;
    }

    .story-timeline::before {
        left: 30px;
    }

    .story-item {
        flex-direction: column !important;
        padding-left: 60px;
    }

    .story-date {
        position: absolute;
        left: 0;
        flex: 0 0 auto;
        width: 50px;
        padding: 10px;
    }

    .story-date i {
        font-size: 1.5rem;
    }

    .story-date span {
        font-size: 0.75rem;
        writing-mode: vertical-rl;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .music-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .couple-photo {
        width: 200px;
        height: 200px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .verse-text {
        font-size: 0.95rem;
    }

    .couple-shape {
        padding: 30px 20px;
    }

    .location-card,
    .rsvp-card,
    .streaming-card {
        padding: 30px 20px;
    }

    .gift-cards {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 2rem;
    }
}
