/* Base Styles */
:root {
    --primary-color: #0077B6;
    --secondary-color: #00B4D8;
    --accent-color: #90E0EF;
    --light-color: #CAF0F8;
    --dark-color: #03045E;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #f8f9fa;
    --transition-speed: 0.3s;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background-color);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 5rem 2rem;
}

button {
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    transition: all var(--transition-speed) ease;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo svg {
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed) ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--light-text);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.6s;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    opacity: 0.5;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.9s;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Bubbles Animation */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0.5;
    animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 50px;
    height: 50px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 30px;
    height: 30px;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 70px;
    height: 70px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 40px;
    height: 40px;
    left: 50%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 60px;
    height: 60px;
    left: 65%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    width: 35px;
    height: 35px;
    left: 80%;
    animation-duration: 11s;
    animation-delay: 2s;
}

.bubble:nth-child(7) {
    width: 45px;
    height: 45px;
    left: 90%;
    animation-duration: 8s;
    animation-delay: 1s;
}

.bubble:nth-child(8) {
    width: 25px;
    height: 25px;
    left: 25%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.bubble:nth-child(9) {
    width: 55px;
    height: 55px;
    left: 75%;
    animation-duration: 9s;
    animation-delay: 2s;
}

.bubble:nth-child(10) {
    width: 40px;
    height: 40px;
    left: 40%;
    animation-duration: 10s;
    animation-delay: 5s;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f8f9fa" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,117.3C672,107,768,117,864,128C960,139,1056,149,1152,138.7C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

/* About Section */
.about {
    background-color: var(--background-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    transition: transform 0.8s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.benefit {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.benefit h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    background-color: #f1f8fb;
    position: relative;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.15);
}

.service-icon {
    height: 200px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-color);
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.duration {
    color: var(--dark-color);
}

.price {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-button {
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    margin-top: auto;
}

.service-button:hover {
    background-color: var(--primary-color);
}

/* Timeline Section */
.timeline {
    background-color: var(--background-color);
    padding: 6rem 2rem;
}

.timeline-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

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

.progress-bar-container {
    position: relative;
    margin: 3rem 0;
}

.progress-bar {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    position: relative;
    margin: 2rem 0 4rem;
}

.progress-level {
    position: absolute;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 3px;
    transition: width 0.6s ease;
}

.progress-markers {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 3px;
    transform: translateY(-50%);
}

.marker {
    position: relative;
    transition: all var(--transition-speed) ease;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 2;
    transition: all var(--transition-speed) ease;
}

.marker.active .marker-dot {
    border-color: var(--secondary-color);
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.marker-info {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    text-align: center;
    opacity: 0;
    transition: all var(--transition-speed) ease;
    pointer-events: none;
}

.marker.active .marker-info {
    opacity: 1;
}

.marker-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.marker-info p {
    font-size: 0.9rem;
    margin: 0;
}

.level-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.level-btn {
    padding: 0.8rem 1.5rem;
    background-color: #e9ecef;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.level-btn:hover {
    background-color: #d1e7f0;
}

.level-btn.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.level-content {
    position: relative;
    min-height: 250px;
}

.level-detail {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.5s ease;
}

.level-detail.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.weekly-plan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.week {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.week h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Dagens Øvelse Section */
.dagens-ovelse {
    background: linear-gradient(135deg, #f1f8fb 0%, #e1f3fa 100%);
    padding: 6rem 2rem;
}

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

.dagens-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dagens-image {
    height: 100%;
    overflow: hidden;
}

.dagens-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dagens-content:hover .dagens-image img {
    transform: scale(1.05);
}

.dagens-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.dagens-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.exercise-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.detail:last-child {
    margin-bottom: 0;
}

.label {
    font-weight: 600;
    color: var(--dark-color);
}

.exercise-description {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.exercise-description h4 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.exercise-button {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    align-self: flex-start;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exercise-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-color);
    padding: 6rem 2rem;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin-bottom: 2rem;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: all 0.8s ease;
    transform: translateX(100%);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-image {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1.1rem;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.prev-testimonial,
.next-testimonial {
    background-color: var(--primary-color);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-speed) ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e9ecef;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--light-text);
    padding: 6rem 2rem;
}

.contact h2::after {
    background-color: var(--light-text);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-text h4 {
    margin-bottom: 0.3rem;
    color: var(--accent-color);
}

.opening-hours {
    margin-top: 2rem;
}

.opening-hours h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.day {
    font-weight: 600;
}

.contact-form-container {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--text-color);
    border: none;
    border-bottom: 1px solid #d1d1d1;
    outline: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: #999;
    pointer-events: none;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all var(--transition-speed) ease;
}

.form-group input:focus ~ .focus-border,
.form-group select:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-button:hover {
    background-color: var(--dark-color);
}

/* Footer */
footer {
    background-color: #222;
    color: var(--light-text);
    padding: 4rem 2rem 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    margin-right: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: var(--light-text);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

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

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-1000px) scale(1.8);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits {
        grid-template-columns: 1fr 1fr;
    }
    
    .dagens-content {
        grid-template-columns: 1fr;
    }
    
    .dagens-image {
        height: 300px;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .level-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .level-btn {
        flex: 0 0 calc(50% - 0.5rem);
        text-align: center;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .testimonial-slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        height: auto;
    }
    
    .testimonial-container {
        height: 400px;
    }
    
    .author {
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    nav ul {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .service-card {
        flex: 0 0 100%;
    }
    
    .weekly-plan {
        grid-template-columns: 1fr;
    }
    
    .progress-markers .marker-info {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}





.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
}

.text-wrapper p{
    margin-bottom: 10px;
}