* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overscroll-behavior: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Tamil', "Inter", sans-serif;
    font-size: 0.93rem;
    line-height: 1.8;
    border-bottom: 4px solid #d63384;
}

a {
    transition: color 0.2s ease;
}

/* Focus states for keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #6a1b9a;
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

header {
    background: linear-gradient(to right, #ffe4ec, #fff);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navbar */
.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #c2185b;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Menu */
.menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
    font-size: 0.9rem;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    align-items: center;
}

.menu ul li a {
    color: #6a1b4d;
    text-decoration: none;
    padding: 0.35rem 0.8rem;
    border-radius: 25px;
    transition: color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
    font-weight: 500;
}

.menu ul li a:hover {
    color: #6a1b9a;
    background-color: rgba(106, 27, 154, 0.06);
}

.menu ul li.active a {
    background-color: #6a1b9a;
    color: white;
}

/* Nav Button */
.services-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d63384, #c2185b);
    color: white;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(214, 51, 132, 0.3);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.services-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.services-btn:hover {
    background: linear-gradient(135deg, #c2185b, #ad1457);
    box-shadow: 0 5px 18px rgba(214, 51, 132, 0.4);
    transform: translateY(-2px);
    color: white;
}

.services-btn:hover::before {
    left: 100%;
}

.services-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(214, 51, 132, 0.3);
}

/* Search */
.custom-search-container {
    flex: 1;
    max-width: 360px;
    margin: 0 auto;
}

.custom-search-container .gsc-control-cse {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.custom-search-container table.gsc-search-box {
    margin-bottom: 0 !important;
}

.custom-search-container td.gsc-input {
    padding-right: 0 !important;
}

.custom-search-container .gsc-input-box {
    border: 1.5px solid rgba(194, 24, 91, 0.18) !important;
    border-radius: 50px !important;
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(194, 24, 91, 0.06) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.custom-search-container .gsc-input-box:hover {
    border-color: rgba(194, 24, 91, 0.3) !important;
}

.custom-search-container .gsc-input-box:focus-within {
    border-color: #c2185b !important;
    box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1) !important;
}

.custom-search-container .gsib_a {
    padding: 0 10px !important;
}

.custom-search-container input.gsc-input {
    font-family: 'Noto Sans Tamil', sans-serif !important;
    font-size: 0.8rem !important;
    height: 28px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    color: #4a1b3d !important;
}

.custom-search-container .gsc-search-button {
    display: none !important;
}

.custom-search-container .gsc-clear-button {
    display: none !important;
}

.custom-search-container .gsst_b {
    padding: 0 8px 0 0 !important;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #880e4f;
    transition: 0.4s ease;
}

/* Hero Section */
section.modern-hero {
    padding: 40px 20px;
    background:
        linear-gradient(160deg, rgba(254, 248, 242, 0.4) 0%, rgba(253, 240, 245, 0.35) 50%, rgba(248, 242, 253, 0.4) 100%),
        url('/media/util/marriagelife home page.avif') no-repeat left bottom / cover;
    background-attachment: scroll, fixed;
    text-align: center;
    min-height: 100vh;
}

section .home-container {
    max-width: 1100px;
    margin: auto;
    padding: 2.5rem 2rem;
    position: relative;
    border: 2px solid rgba(194, 24, 91, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
}

/* Outer decorative frame */
section .home-container::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1.5px solid rgba(194, 24, 91, 0.12);
    border-radius: 26px;
    pointer-events: none;
}

/* Top center ornament */
section .home-container::after {
    content: '✦ ✦ ✦';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(160deg, #fef8f2, #fdf0f5);
    padding: 0 16px;
    color: #c2185b;
    font-size: 0.7rem;
    letter-spacing: 4px;
    pointer-events: none;
}

/* Hero Top */
section .hero-top {
    line-height: 1.5;
}

section .hero-top h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

section .hero-top .hero-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #880e4f;
    margin-bottom: 10px;
}

section .hero-top p {
    color: #555;
    margin-bottom: 30px;
}

section .hero-top #hero-question.fade-text {
    transition: opacity 0.8s ease;
    opacity: 1;
}

section .hero-top #hero-question.fade-text.fade-out {
    opacity: 0;
}

/* Hero Highlight */
section .hero-highlight {
    position: sticky;
    bottom: 4px;
    z-index: 10;
    background: #fce4ec;
    padding: 20px 20px 10px 20px;
    border-radius: 16px;
    margin: 40px 0;
}

section .hero-highlight p {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

section .hero-highlight strong {
    font-size: 1.2rem;
}

section .hero-highlight a img {
    width: 232px;
    height: 49px;
    border-radius: 50px;
    transition: transform 0.2s ease;
}

section .hero-highlight a img:hover {
    transform: translateY(-1px);
}

/* Services */
section .services-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

section .service-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 25px;
    flex: 1 1 280px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    line-height: 1.5;
}

section .service-card:hover {
    transform: translateY(-6px);
}

section .service-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

section .service-card .title {
    font-weight: bold;
    color: #6a1b9a;
    margin-bottom: 8px;
}

section .service-card p {
    color: #555;
}

section .trust-note {
    margin-top: 40px;
    color: #333;
    opacity: 0.9;
}

section .fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

section .slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease-out forwards;
}

/* Page Layout */
.content {
    padding: 2rem 2rem 0 2rem;
}

.post-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.postList {
    padding: 2rem;
}

.pageInfo {
    text-align: center;
}

.pageInfo h1,
.pageInfo h2 {
    color: #be185d;
    font-size: 1.4rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    font-size: 0.82rem;
    margin-bottom: 1rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(to right, #fce4ec, #f3e8ff);
    border-radius: 8px;
    color: #6a1b4d;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #6a1b9a;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #d63384;
    text-decoration: underline;
}

.breadcrumb > span {
    color: #555;
    display: inline;
    width: auto;
    height: auto;
    background: none;
    margin: 0;
    border-radius: 0;
}

.pageInfo span {
    display: block;
    width: 120px;
    height: 3px;
    background: #be185d;
    border-radius: 6px;
    margin: 12px auto;
}

/* Thumbnail Cards */
.thumbnailCards {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.thumbnailCard {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumbnailCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thumbnailCard img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.thumbnailCard .cardContent {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.thumbnailCard .cardCategory {
    color: #c40202;
    font-size: 0.85rem;
    font-weight: bold;
}

.thumbnailCard .cardTitle {
    font-size: 0.9rem;
    margin: 8px 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.thumbnailCard .cardDescription {
    font-size: 0.88rem;
    color: #4a4e69;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.thumbnailCard .cardReadMore {
    margin-top: auto;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
    background: #4c3b3b;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 6px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.thumbnailCard .cardReadMore:hover {
    background: #ad1457;
}

/* Post Content */
.post {
    width: 100%;
    min-height: 700px;
    padding: 1.5rem 2.5rem 0 2.5rem;
    background-color: #fff;
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.12), 0 1.5px 6px rgba(44, 62, 80, 0.08);
    border: 1px solid #f3e8ff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.post h1 {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
}

.post h2 {
    font-size: 1.45rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    color: #880e4f;
}

.post h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.post h4 {
    font-size: 1.05rem;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
}

.post .header {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.post .header span {
    width: 60px;
    height: 3px;
    background: #be185d;
    border-radius: 6px;
    margin: 12px auto;
}

.post .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 12px;
}

.post .info .text {
    color: #6a1b4d;
}

.post .body {
    font-size: 1.05rem;
    line-height: 1.9;
}

.post .body li {
    margin-bottom: 6px;
}

/* Post Footer */
.post .footer {
    margin-top: auto;
    border-top: 1.5px solid #f3e8ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1.5rem;
    gap: 0.5rem;
}

.post .footer .leftHand a {
    color: #ffffff;
    background: #4c3b3b;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 6px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.post .footer .leftHand a:hover {
    background: #9d0e0e;
}

.post .footer .socialmedia {
    display: flex;
    gap: 14px;
    align-items: center;
}

.post .footer .socialmedia a {
    color: rgb(218, 50, 140);
    background: #f9d2df;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}

.post .footer .socialmedia a:hover {
    background: rgb(235, 26, 137);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    color: #6d28d9;
    background: #f3e8ff;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(44, 62, 80, 0.06);
    transition: background 0.2s ease, color 0.2s ease;
}

.pagination a.disable {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination a.active {
    background: #6d28d9;
    color: #fff;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.16), 0 1.5px 6px rgba(44, 62, 80, 0.08);
}

.pagination a.first,
.pagination a.last,
.pagination a.previous,
.pagination a.next {
    background: #e0e7ff;
    color: #3730a3;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
}

.pricing-section .header {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.pricing-section .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-section .cards .card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1.2rem;
    padding: 2rem;
    width: 325px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-section .cards .card:hover {
    transform: translateY(-8px);
}

.pricing-section .cards .card .badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #c40202;
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.pricing-section .cards .card h3 {
    font-size: 1.4rem;
    color: #4b0082;
    margin-bottom: 0.5rem;
}

.pricing-section .cards .card .icon {
    font-size: 2.5rem;
    opacity: 0.5;
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: none;
}

.pricing-section .cards .card .price {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: #1e40af;
}

.pricing-section .cards .card .desc {
    margin-bottom: 1.2rem;
    color: #6b7280;
}

.pricing-section .cards .card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.2rem;
}

.pricing-section .cards .card ul li {
    padding: 0.3rem 0;
    border-bottom: 1px dashed #ddd;
}

.pricing-section .cards .card .plan-btn {
    margin: auto auto 0 auto;
    background: #6d28d9;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: background 0.3s ease;
}

.pricing-section .cards .card .plan-btn:hover {
    background: #581c87;
}

.pricing-section .footerNote {
    margin-top: 2rem;
    color: #4b5563;
}

.pricing-section .footerNote a {
    color: #6d28d9;
}

/* ===== Media Queries ===== */

@media(max-width: 912px) {
    .custom-search-container {
        max-width: 200px;
    }
}

@media(max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -270px;
        width: 260px;
        height: 100vh;
        background: linear-gradient(to bottom, #fff, #ffe4ec);
        flex-direction: column;
        align-items: stretch;
        padding: 3.5rem 1.2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease-in-out;
        z-index: 100;
        font-size: 0.95rem;
        gap: 0.5rem;
        overflow-y: auto;
    }

    .menu.active {
        right: 0;
    }

    .menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .menu ul li a {
        display: block;
        padding: 0.7rem 1rem;
        border-radius: 10px;
        font-size: 0.95rem;
        color: #4a1b3d;
    }

    .menu ul li a:hover {
        background: #fce4ec;
    }

    .menu ul li.active a {
        background-color: #6a1b9a;
        color: #fff;
        font-weight: 600;
    }

    .right-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f0e0e6;
    }

    .services-btn {
        display: block;
        text-align: center;
        background: #880e4f;
        box-shadow: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 999;
        padding: 8px;
        margin-left: auto;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .menu-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 98;
        transition: opacity 0.3s ease;
    }

    .menu-backdrop.active {
        display: block;
    }

    .custom-search-container {
        display: none;
    }

    section.modern-hero {
        min-height: auto;
        padding: 20px 10px;
    }

    section .home-container {
        padding: 1.5rem 1rem;
        border-radius: 14px;
    }

    section .home-container::before {
        inset: -6px;
        border-radius: 18px;
    }

    section .hero-top h1 {
        font-size: 1.5rem;
    }

    section .service-card {
        flex: 1 1 100%;
    }

    section .hero-highlight {
        bottom: 6px;
        margin-bottom: 0;
    }

    section .trust-note {
        background: #fff;
        padding: 4px;
        border-radius: 16px;
        margin-top: 12px;
    }

    .thumbnailCards {
        flex-direction: column;
        align-items: center;
    }

    .thumbnailCard {
        max-width: 90%;
        margin-bottom: 16px;
    }

    .pricing-section .cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .content {
        padding: 1rem;
    }

    .post-container {
        padding: 1rem;
    }

    .breadcrumb {
        font-size: 0.78rem;
        padding: 0.5rem 0.8rem;
    }

    .post .footer {
        justify-content: center;
    }

    .post .footer .leftHand {
        order: 2;
        margin-top: 24px;
    }

    .post .footer .socialmedia {
        order: 1;
    }
}

/* Site Footer */
.site-footer {
    background: linear-gradient(to right, #ffe4ec, #f3e8ff);
    padding: 2rem 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #c2185b;
    font-weight: bold;
    text-decoration: none;
}

.footer-brand p {
    color: #6a1b4d;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #6a1b4d;
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: #6a1b9a;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: #6a1b4d;
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-contact a:hover {
    color: #6a1b9a;
}

.footer-contact i {
    width: 18px;
    color: #c2185b;
}

.footer-bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(106, 27, 77, 0.15);
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.8rem;
}

@media (max-width: 576px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-page h1 {
    font-size: 1.6rem;
    color: #6a1b9a;
    margin-bottom: 0.5rem;
}

.legal-page .last-updated {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.15rem;
    color: #880e4f;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #f3e8ff;
}

.legal-page h3 {
    font-size: 1rem;
    color: #6a1b4d;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #333;
}

.legal-page ul, .legal-page ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.4rem;
    color: #444;
}

.legal-page a {
    color: #6a1b9a;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #d63384;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.legal-page table th,
.legal-page table td {
    padding: 0.6rem 1rem;
    border: 1px solid #e0e0e0;
    text-align: left;
    font-size: 0.9rem;
}

.legal-page table th {
    background: #f3e8ff;
    color: #6a1b9a;
    font-weight: 600;
}

.legal-page .contact-card {
    background: #fce4ec;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}

.legal-page .contact-card p {
    margin-bottom: 0.5rem;
}

.support-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.support-card {
    flex: 1 1 280px;
    background: #fff;
    border: 1px solid #f3e8ff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.support-card i {
    font-size: 2rem;
    color: #6a1b9a;
    margin-bottom: 0.8rem;
    display: block;
}

.support-card h3 {
    color: #880e4f;
    margin-bottom: 0.5rem;
}

.support-card p, .support-card a {
    font-size: 0.9rem;
}

.delete-form {
    background: #fff;
    border: 1px solid #f3e8ff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    max-width: 500px;
    margin: 1.5rem 0;
}

.delete-form label {
    display: block;
    margin-bottom: 0.3rem;
    color: #6a1b4d;
    font-weight: 500;
}

.delete-form input, .delete-form textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.delete-form input:focus, .delete-form textarea:focus {
    outline: none;
    border-color: #6a1b9a;
}

.delete-form button {
    background: #c62828;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.delete-form button:hover {
    background: #b71c1c;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
