/* Global Styles */
:root {
    --primary-green: #4CAB66;
    --light-green: #DFFFB7;
    --warm-orange: #F4A761;
    --cream: #F4E3D7;
    --sky-blue: #81C3D7;
    --light-blue: #E8F4F7;
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.primary-button {
    background-color: var(--primary-green);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 171, 102, 0.3);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-green);
    color: var(--light-text);
}

/* Navigation Styles */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.nav-circles {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-circle {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.nav-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-green);
    border-radius: 20px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-circle:hover::before,
.nav-circle.active::before {
    transform: scale(1);
}

.nav-circle.active {
    color: var(--primary-green);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 5rem;
    background-color: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 45%;
    z-index: 2;
}

.hero-visual {
    width: 50%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 0 200px;
    box-shadow: -20px 20px 0 var(--light-green);
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.hero-image:hover {
    transform: scale(1.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.floating-item {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-item:nth-child(1) {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.floating-item:nth-child(2) {
    bottom: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 1s;
}

.floating-item:nth-child(3) {
    top: 50%;
    right: -20px;
    width: 120px;
    height: 120px;
    animation-delay: 2s;
}

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

/* About Section */
.about-section {
    background-color: #FFFFFF;
    padding: 6rem 5%;
}

.about-diagonal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, transparent 49.5%, var(--cream) 50%);
    padding: 3rem 0;
}

.about-content {
    width: 45%;
    padding-left: 5%;
}

.about-image-container {
    width: 50%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 100px 0 100px 0;
    box-shadow: 0 20px 40px var(--shadow);
}

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

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

.floating-quote {
    position: absolute;
    bottom: 30px;
    left: -50px;
    background-color: var(--warm-orange);
    color: var(--light-text);
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 10px 20px rgba(244, 167, 97, 0.3);
}

.floating-quote p {
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

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

.approach-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

.approach-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    background-color: #FFFFFF;
    padding: 6rem 0 8rem;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.services-wave svg {
    width: 100%;
    height: 100%;
}

.services-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-featured {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    margin-bottom: 4rem;
}

.service-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-description {
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--light-green);
    border-radius: 50%;
}

.service-price {
    margin-top: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.price-period {
    color: #777;
    font-size: 1rem;
}

.service-button {
    background-color: var(--primary-green);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-button:hover {
    background-color: #3a9950;
    box-shadow: 0 5px 15px rgba(76, 171, 102, 0.3);
}

.service-image {
    width: 40%;
    overflow: hidden;
}

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

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

.services-additional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Nutrition Color Palette Section */
.palette-section {
    background-color: var(--light-blue);
    text-align: center;
    padding: 6rem 5%;
    position: relative;
}

.palette-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.color-palette-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.color-group {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    height: 200px;
}

.color-group:nth-child(even) {
    flex-direction: row-reverse;
}

.color-swatch {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.02);
}

.color-info {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.color-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.color-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.nutrient-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.color-foods {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.color-foods img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.color-foods:hover img {
    transform: scale(1.1);
}

.palette-action {
    margin-top: 3rem;
}

.palette-button {
    background-color: var(--warm-orange);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.palette-button:hover {
    background-color: #e89244;
    box-shadow: 0 5px 15px rgba(244, 167, 97, 0.3);
}

/* Macro-Ratio Graph Section */
.macro-section {
    background-color: #FFFFFF;
    padding: 6rem 5%;
}

.macro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.macro-graph-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.macro-controls {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.macro-slider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.macro-slider label {
    width: 80px;
    font-weight: 500;
}

.slider {
    -webkit-appearance: none;
    width: 60%;
    height: 8px;
    border-radius: 4px;
    background: #ddd;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

#protein-slider::-webkit-slider-thumb {
    background: var(--primary-green);
}

#fat-slider::-webkit-slider-thumb {
    background: var(--warm-orange);
}

#carb-slider::-webkit-slider-thumb {
    background: var(--sky-blue);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.graph-visualization {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#macroChart {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
}

.macro-feedback {
    background-color: var(--light-green);
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(223, 255, 183, 0.5);
}

.preset-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 3rem;
}

.preset-button {
    background-color: var(--light-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preset-button:hover {
    background-color: var(--sky-blue);
    color: var(--light-text);
}

/* Taste & Feel Section */
.taste-feel-section {
    background-color: var(--cream);
    padding: 6rem 5%;
    text-align: center;
}

.taste-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.mood-selector {
    margin-bottom: 3rem;
}

.mood-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.mood-option {
    background-color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    min-width: 120px;
    box-shadow: 0 10px 20px var(--shadow);
    transition: all 0.3s ease;
}

.mood-option.active {
    background-color: var(--primary-green);
    color: var(--light-text);
}

.mood-option:hover {
    transform: translateY(-5px);
}

.mood-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.texture-explorer {
    margin-bottom: 3rem;
}

.texture-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.texture-option {
    width: 180px;
    height: 180px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px var(--shadow);
    transition: all 0.3s ease;
}

.texture-option.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 171, 102, 0.5);
    border: 3px solid var(--primary-green);
    border-radius: 15px;
}

.texture-option:hover {
    transform: translateY(-5px);
}

.texture-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texture-option span {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--light-text);
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.taste-recommendations {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
}

.recommendation-intro {
    margin-bottom: 2rem;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.recommendation-card {
    background-color: var(--light-blue);
    padding: 20px;
    border-radius: 15px;
    text-align: left;
}

.recommendation-card h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.food-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.food-tag {
    background-color: var(--light-green);
    color: var(--primary-green);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 6rem 0 0;
    overflow: hidden;
}

.contact-mountain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    z-index: -1;
}

.contact-mountain svg {
    width: 100%;
    height: 100%;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
}

.contact-info h2::after {
    background-color: var(--warm-orange);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item p {
    margin: 0;
}

.contact-form-container {
    width: 100%;
    max-width: 600px;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--warm-orange);
    color: var(--light-text);
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: #e89244;
    box-shadow: 0 5px 15px rgba(244, 167, 97, 0.3);
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: 5rem 5% 2rem;
    margin-top: 6rem;
    position: relative;
}

.footer-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    transform: translateY(-99%);
}

.footer-curve svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 300px;
}

.logo-small {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--warm-orange);
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-section {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
    }
    
    .hero-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        width: 100%;
    }
    
    .about-diagonal {
        flex-direction: column;
        gap: 3rem;
        background: none;
        padding: 0;
    }
    
    .about-content {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image-container {
        width: 100%;
        max-width: 600px;
    }
    
    .service-featured {
        flex-direction: column;
    }
    
    .service-content, 
    .service-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-circles {
        display: none;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 5%;
    }
    
    .hero-image-container {
        height: 300px;
        border-radius: 0 0 0 100px;
    }
    
    .floating-item {
        width: 70px;
        height: 70px;
    }
    
    .floating-item:nth-child(3) {
        width: 90px;
        height: 90px;
    }
    
    .about-image-container {
        height: 300px;
        border-radius: 50px 0 50px 0;
    }
    
    .floating-quote {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .approach-grid,
    .services-additional {
        grid-template-columns: 1fr;
    }
    
    .color-group {
        flex-direction: column !important;
        height: auto;
    }
    
    .color-swatch,
    .color-foods {
        width: 100%;
        height: 150px;
    }
    
    .macro-graph-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info,
    .contact-form-container {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animation classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.visible {
    opacity: 1;
}

.animate-scale {
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.animate-scale.visible {
    transform: scale(1);
    opacity: 1;
}


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

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

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