/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #E8F6F9;
    color: #1C1C1C;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: #03678A;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #1C1C1C;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(232, 246, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1C1C1C;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00B5D9;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00B5D9;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1C1C1C;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background-color: #00A3CC;
    color: white;
}

.btn-primary:hover {
    background-color: #03678A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 163, 204, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #00A3CC;
    border: 2px solid #00A3CC;
}

.btn-secondary:hover {
    background-color: #00A3CC;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #03678A;
    border: 2px solid #03678A;
}

.btn-outline:hover {
    background-color: #03678A;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: #03678A;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #1C1C1C;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 181, 217, 0.3);
}

.hero-stats {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 181, 217, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00B5D9;
    font-family: 'Rajdhani', sans-serif;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #03678A;
    margin-top: 0.5rem;
}

/* Membership Section */
.membership {
    padding: 100px 0;
    background-color: white;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.membership-card {
    background-color: #E8F6F9;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 181, 217, 0.2);
}

.membership-card.featured {
    border-color: #00B5D9;
    background-color: white;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00B5D9;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-title {
    font-size: 1.8rem;
    color: #03678A;
    margin-bottom: 1rem;
}

.card-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #00B5D9;
    font-family: 'Rajdhani', sans-serif;
}

.period {
    font-size: 1.2rem;
    color: #1C1C1C;
    opacity: 0.7;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.card-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    fill: #00B5D9;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #E8F6F9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.feature-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 181, 217, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: #E8F6F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: #00B5D9;
}

.feature-title {
    font-size: 1.5rem;
    color: #03678A;
    margin-bottom: 1rem;
}

.feature-description {
    margin-bottom: 1.5rem;
    color: #1C1C1C;
    opacity: 0.8;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

/* Trainers Section */
.trainers {
    padding: 100px 0;
    background-color: white;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.trainer-card {
    background-color: #E8F6F9;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 181, 217, 0.1);
}

.trainer-card:hover {
    transform: translateY(-10px);
}

.trainer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.trainer-info {
    padding: 2rem;
}

.trainer-name {
    font-size: 1.5rem;
    color: #03678A;
    margin-bottom: 0.5rem;
}

.trainer-role {
    color: #00B5D9;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trainer-description {
    margin-bottom: 1.5rem;
    color: #1C1C1C;
    opacity: 0.8;
}

.trainer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background-color: #00B5D9;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Safety Section */
.safety {
    padding: 100px 0;
    background-color: #E8F6F9;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.safety-features {
    margin-top: 2rem;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.safety-icon {
    width: 50px;
    height: 50px;
    background-color: #00B5D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.safety-icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.safety-info h3 {
    font-size: 1.3rem;
    color: #03678A;
    margin-bottom: 0.5rem;
}

.safety-info p {
    color: #1C1C1C;
    opacity: 0.8;
}

.safety-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Hours Section */
.hours {
    padding: 100px 0;
    background-color: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hours-card {
    background-color: #E8F6F9;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.hours-title {
    font-size: 1.5rem;
    color: #03678A;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem .5rem;
    border-bottom: 1px solid rgba(0, 181, 217, 0.2);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #1C1C1C;
}

.time {
    color: #00B5D9;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #E8F6F9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 181, 217, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #1C1C1C;
    line-height: 1.7;
}

.testimonial-author strong {
    color: #03678A;
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    color: #00B5D9;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #00B5D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: #03678A;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #1C1C1C;
    opacity: 0.8;
}

/* Form Styles */
.form {
    background-color: #E8F6F9;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #03678A;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid transparent;
    border-radius: 10px;
    background-color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00B5D9;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #03678A;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.5);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #00B5D9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00B5D9;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #00B5D9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #03678A;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 25px;
    height: 25px;
    fill: white;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(232, 246, 249, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }

    .membership-card.featured {
        transform: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .safety-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 150px 0 100px;
    background-color: white;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    color: #03678A;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.legal-subtitle {
    text-align: center;
    color: #00B5D9;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-text {
    color: #1C1C1C;
    line-height: 1.7;
}

.legal-text h2 {
    color: #03678A;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    border-bottom: 2px solid #E8F6F9;
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    color: #00B5D9;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: #1C1C1C;
    opacity: 0.9;
}

.legal-list {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 0;
}

.legal-list li {
    margin-bottom: 0.8rem;
    color: #1C1C1C;
    opacity: 0.85;
    position: relative;
    padding-left: 1.5rem;
}

.legal-list li::before {
    content: '•';
    color: #00B5D9;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-info {
    background-color: #E8F6F9;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00B5D9;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #1C1C1C;
}

.contact-info strong {
    color: #03678A;
    font-weight: 600;
}

.legal-text a {
    color: #00B5D9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #03678A;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 120px 0 80px;
    }

    .legal-title {
        font-size: 2.5rem;
    }

    .legal-text h2 {
        font-size: 1.6rem;
    }

    .legal-text h3 {
        font-size: 1.2rem;
    }

    .legal-list {
        margin-left: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 2rem;
    }

    .legal-text h2 {
        font-size: 1.4rem;
    }

    .legal-text h3 {
        font-size: 1.1rem;
    }

    .legal-list {
        margin-left: 0.5rem;
    }

    .legal-list li {
        padding-left: 1rem;
    }
}

.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #E8F6F9 0%, white 100%);
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 181, 217, 0.3);
}

.success-icon svg {
    width: 60px;
    height: 60px;
}

.success-title {
    font-size: 3rem;
    color: #03678A;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.success-description {
    font-size: 1.2rem;
    color: #1C1C1C;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.success-details h2 {
    color: #03678A;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', sans-serif;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 181, 217, 0.1);
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #00B5D9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.step-content h3 {
    color: #03678A;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #1C1C1C;
    opacity: 0.8;
    line-height: 1.6;
}

.contact-info-box {
    background-color: #E8F6F9;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.contact-info-box h3 {
    color: #03678A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.immediate-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-method svg {
    width: 30px;
    height: 30px;
    fill: #00B5D9;
    flex-shrink: 0;
}

.contact-method strong {
    color: #03678A;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: #1C1C1C;
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .success-title {
        font-size: 2.5rem;
    }

    .success-description {
        font-size: 1.1rem;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .immediate-contact {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}