/* ------------------ RESET & BASE STYLES ------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #2d3142;
    --accent-color: #4f5d75;
    --light-color: #efefef;
    --dark-color: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f8333c 100%);
    --gradient-dark: linear-gradient(135deg, #2d3142 0%, #1a1a1a 100%);
    --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header.light h2,
.section-header.light .section-description {
    color: var(--light-color);
}

.underline {
    height: 4px;
    width: 80px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.underline:after {
    content: '';
    position: absolute;
    height: 4px;
    width: 40px;
    background: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
    top: -4px;
}

.underline.light:after {
    background: var(--light-color);
}

.section-description {
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    color: var(--accent-color);
}

/* ------------------ HEADER & NAVIGATION ------------------ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(45, 49, 66, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 5%;
    background-color: rgba(45, 49, 66, 0.98);
}

.logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-container span{
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin-left: 10px;
}

.logo {
    height: 50px;
    transition: var(--transition);
}

header.scrolled .logo {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a {
    color: var(--light-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.bli-medlem a {
    background: var(--gradient-primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.bli-medlem a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--light-color);
    cursor: pointer;
}

/* ------------------ HERO SECTION ------------------ */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--light-color);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/images.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: translateZ(-1px) scale(1.1);
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.7));
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
    transform: translateY(-2rem);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.cta-button.light {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button.light:hover {
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 0.9rem 2.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: var(--transition);
}

.secondary-button:hover {
    background: white;
    color: var(--secondary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-color);
    font-size: 0.9rem;
    gap: 0.5rem;
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-color);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: var(--light-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 1.5s infinite;
}

@keyframes mouse-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* ------------------ FILOSOFI SECTION ------------------ */
.filosofi-section {
    padding: 8rem 5%;
    background-color: white;
}

.filosofi-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.filosofi-text {
    flex: 1;
}

.filosofi-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.filosofi-text p {
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.filosofi-pillars {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.pillar {
    background-color: var(--light-color);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pillar h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.pillar p {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 0;
}

.filosofi-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
}

.filosofi-image:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.02);
}

.filosofi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    transition: var(--transition);
}

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

/* ------------------ TJENESTER SECTION ------------------ */
.tjenester-section {
    padding: 8rem 5%;
    background: var(--gradient-dark);
    position: relative;
}

.honeycomb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1400px;
    padding: 2rem 0;
}

.honeycomb-cell {
    width: 350px;
    height: 380px;
    margin: 40px 20px;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--primary-color);
    transition: var(--transition);
    overflow: hidden;
}

.honeycomb-cell:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.honeycomb-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem 1.5rem;
    color: white;
    text-align: center;
    background: rgba(255, 107, 53, 0.8);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.honeycomb-cell:hover .honeycomb-content {
    background: rgba(255, 107, 53, 0.95);
}

.honeycomb-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.honeycomb-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.honeycomb-button {
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.honeycomb-button:hover {
    background: var(--secondary-color);
    color: white;
}

/* ------------------ TRANSFORMASJON SECTION ------------------ */
.transformasjon-section {
    padding: 8rem 5%;
    background-color: white;
    overflow: hidden;
}

.cube-container {
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
    position: relative;
    transform: scale(0.7);
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 0.5s;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cube-face.front {
    transform: translateZ(400px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(400px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(400px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(400px);
}

.testimonial {
    display: flex;
    height: 100%;
    background-color: var(--light-color);
}

.testimonial-image {
    flex: 1;
    height: 100%;
    object-fit: cover;
    max-width: 400px;
}

.testimonial-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--accent-color);
    line-height: 1.8;
}

.cube-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 12rem;
}

.cube-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.cube-controls button:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* ------------------ FELLESSKAP SECTION ------------------ */
.fellesskap-section {
    padding: 8rem 5% 4rem;
    position: relative;
    color: var(--light-color);
    overflow: hidden;
}

.fellesskap-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4f5d75 0%, #2d3142 100%);
    z-index: -1;
}

.fellesskap-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.fellesskap-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.fellesskap-text p {
    font-size: 1.2rem;
}

.fellesskap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.fellesskap-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.fellesskap-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fellesskap-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fellesskap-item:hover img {
    transform: scale(1.1);
}

.fellesskap-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    transition: var(--transition);
}

.fellesskap-item:hover .fellesskap-overlay {
    padding-bottom: 3rem;
}

.fellesskap-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fellesskap-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.community-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ------------------ PROGRESJON SECTION ------------------ */
.progresjon-section {
    padding: 8rem 5%;
    background-color: white;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    z-index: 1;
    box-shadow: 0 0 0 4px white, 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    width: 45%;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-main);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 2.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 2.5rem;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--light-color);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--light-color) transparent transparent;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.timeline-content p {
    color: var(--accent-color);
}

/* ------------------ BLI MEDLEM SECTION ------------------ */
.bli-medlem-section {
    padding: 8rem 5%;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.membership-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-container h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--accent-color);
    background-color: var(--light-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.submit-button:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

.membership-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

/* ------------------ KONTAKT SECTION ------------------ */
.kontakt-section {
    padding: 8rem 5%;
    background-color: white;
}

.kontakt-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.kontakt-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-content p {
    color: var(--accent-color);
}

.kontakt-map {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

/* ------------------ FOOTER ------------------ */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    position: relative;
}

.wave-container {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.wave-container svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: var(--dark-color);
}

.footer-content {
    padding: 4rem 5% 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 70px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ------------------ RESPONSIVE STYLES ------------------ */
@media (max-width: 1200px) {
    .filosofi-container,
    .membership-container,
    .kontakt-container {
        flex-direction: column;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
    }
    
    .timeline-icon {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content::after,
    .timeline-item:nth-child(odd) .timeline-content::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-color);
        flex-direction: column;
        padding: 3rem 0;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .fellesskap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .filosofi-pillars {
        grid-template-columns: 1fr;
    }
    
    .honeycomb-cell {
        width: 200px;
        height: 230px;
    }
    
    .cube-container {
        height: 500px;
    }
    
    .testimonial {
        flex-direction: column;
    }
    
    .fellesskap-grid {
        grid-template-columns: 1fr;
    }
    
    .kontakt-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .cta-container {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
    


.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;
}