:root {
    --coral: #E8836B;
    --coral-light: #F5A795;
    --coral-dark: #D66B52;
    --cream: #FDF8F5;
    --sand: #F5EDE8;
    --charcoal: #2D2D2D;
    --text: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Header Sticky */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(232, 131, 107, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coral);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.header-cta {
    background: var(--gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 131, 107, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 131, 107, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 2rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--sand);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

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

.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-badge::before {
    content: '🏃‍♀️';
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--coral);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.meta-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(232, 131, 107, 0.4);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 131, 107, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--coral);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--coral-light);
}

.btn-secondary:hover {
    background: var(--sand);
    border-color: var(--coral);
}

.hero-images {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-img-1 {
    width: 320px;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-img-2 {
    width: 280px;
    height: 350px;
    top: 80px;
    right: 0;
    z-index: 1;
}

.hero-img-3 {
    width: 200px;
    height: 250px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
    bottom: 100px;
    left: -30px;
    z-index: 4;
}

.floating-card-2 {
    top: 50px;
    right: -20px;
    z-index: 4;
    animation-delay: 1s;
}

.floating-card .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
}

.floating-card .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
}

.section-dark {
    background: var(--charcoal);
    color: var(--white);
}

.section-coral {
    background: var(--gradient);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--coral);
    margin-bottom: 1rem;
}

.section-dark .section-label {
    color: var(--coral-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--sand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 500;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    display: block;
}

.about-image .btn-primary {
    margin-top: 1.5rem;
    display: inline-flex;
}

/* Coaches Section */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.coach-card {
    background: rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

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

.coach-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.coach-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--coral-light);
}

.coach-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.coach-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.coach-card p {
    opacity: 0.85;
    line-height: 1.8;
}

/* Programme Section */
.programme-timeline {
    position: relative;
}

.programme-day {
    margin-bottom: 3rem;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.day-badge {
    background: var(--coral);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.day-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.activities-grid {
    display: grid;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 3px solid var(--coral-light);
}

.activity-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.activity-time {
    min-width: 80px;
    font-weight: 600;
    color: var(--coral);
}

.activity-content h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.activity-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Tarifs Section */
.pricing-card {
    background: var(--white);
    border-radius: 32px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.pricing-includes, .pricing-excludes {
    margin-bottom: 2rem;
}

.pricing-includes h4, .pricing-excludes h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-includes h4 {
    color: #2E7D32;
}

.pricing-excludes h4 {
    color: var(--text-light);
}

.pricing-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.pricing-list .check {
    color: #2E7D32;
    font-weight: bold;
}

.pricing-list .cross {
    color: #999;
}

.pricing-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--sand);
}

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

.prereq-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.prereq-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.prereq-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.prereq-card p {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Hotel Section */
.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hotel-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hotel-info .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--coral);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hotel-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hotel-feature {
    background: var(--sand);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hotel-gallery img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 200px;
}

.hotel-gallery img:first-child {
    grid-row: span 2;
    height: 100%;
}

/* CTA Final Section */
.cta-section {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: white;
    color: var(--coral);
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
}

.cta-section .btn-primary:hover {
    background: var(--cream);
}

/* Contact Section */
.contact-section {
    background: var(--sand);
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--coral);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--coral-dark);
    transform: translateY(-2px);
}

.contact-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer a {
    color: var(--coral-light);
    text-decoration: none;
}

/* Responsive */

/* Tablettes et petits écrans (1200px) */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }

    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

/* Tablettes (1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

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

    .hero-cta-group {
        justify-content: center;
    }

    .hero-images {
        height: 400px;
        margin-top: 2rem;
    }

    .hero-img-1 {
        width: 250px;
        height: 320px;
        left: 50%;
        transform: translateX(-70%);
    }

    .hero-img-2 {
        width: 220px;
        height: 280px;
        left: 50%;
        transform: translateX(-30%);
        top: 40px;
    }

    .hero-img-3 {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

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

    .hotel-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section {
        padding: 5rem 2rem;
    }
}

/* Tablettes portrait et grands mobiles (768px) */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 50px;
    }

    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 120px 1.5rem 3rem;
    }

    .hero::before {
        display: none;
    }

    .hero-images {
        height: 300px;
    }

    .hero-img-1 {
        width: 200px;
        height: 260px;
    }

    .hero-img-2 {
        width: 180px;
        height: 220px;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .activities-grid {
        padding-left: 1rem;
        border-left-width: 2px;
    }

    .activity-card {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.25rem;
    }

    .activity-time {
        min-width: auto;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .pricing-list {
        grid-template-columns: 1fr;
    }

    .hotel-gallery {
        grid-template-columns: 1fr;
    }

    .hotel-gallery img:first-child {
        grid-row: span 1;
        height: 200px;
    }

    .prereq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 6rem 1.5rem;
    }
}

/* Mobiles (600px) */
@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .about-content h3 {
        font-size: 1.75rem;
    }

    .hotel-info h3 {
        font-size: 2rem;
    }
}

/* Petits mobiles (480px) */
@media (max-width: 480px) {
    .header {
        padding: 0.75rem;
    }

    .logo-img {
        height: 45px;
    }

    .header-cta {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 110px 1rem 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

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

    .hero-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .meta-item {
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-images {
        height: 250px;
    }

    .hero-img-1 {
        width: 160px;
        height: 220px;
    }

    .hero-img-2 {
        width: 140px;
        height: 180px;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .coach-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .coach-avatar {
        width: 100px;
        height: 100px;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .hotel-info h3 {
        font-size: 1.75rem;
    }

    .hotel-features {
        flex-direction: column;
        align-items: stretch;
    }

    .hotel-feature {
        text-align: center;
    }

    .cta-section {
        padding: 5rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.5rem;
    }

    .contact-email {
        font-size: 1.1rem;
    }

    .footer {
        padding: 2rem 1rem;
    }
}

/* Très petits mobiles (360px) */
@media (max-width: 360px) {
    .logo-img {
        height: 40px;
    }

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

    .meta-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-images {
        height: 220px;
    }

    .hero-img-1 {
        width: 140px;
        height: 190px;
    }

    .hero-img-2 {
        width: 120px;
        height: 160px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .contact-email {
        font-size: 1rem;
        word-break: break-all;
    }
}
