

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ff4d4d;
    color: #2c1810;
    min-height: 100vh;
}

header {
    background-color: #1a4c28;
    color: #fffdd0;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 7px solid #98fb98;
    position: sticky;
    top: 0;
    z-index: 67;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;

    margin: 0;
    letter-spacing: 1px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;


    background: #fffdd0;
    padding: 3rem;
    border-radius: 30px;
    border: 4px solid #1a4c28;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.hero-text {
    flex: 1;
}



.hero-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    color: #ff4d4d;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 0 #1a4c28;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1a4c28;
    font-weight: 600;
}



.image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image img {
    max-width: 100%;
    border-radius: 17px;
    border: 4px solid #1a4c28;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.image img:hover {
    transform: rotate(-4deg) scale(1.03);
}


