* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', monospace;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: #2c2c2c;
    color: rgb(255, 255, 255);
    padding-top: 80px;
}

section {
    padding: 60px 20px;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
}

.hero-content {
    padding: 20px;
    
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: #000000 0 0 4px;
    font-weight: bold;
}

.hero-content img{
    max-width: 60%;
    height: auto;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #000000;
    background-color: #3bb54a;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.6s ease;
    box-shadow: 0 0 8px rgb(36, 36, 36);
}

.hero-button:hover {
    background-color: #1d1d1d;
    color: #fff;
}

a{
    color: #ffffff;
    transition: 0.3s ease;
}

a:hover{
    color: #c2c2c2;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.about-section img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 40%;
}

@media (max-width: 768px) {

    .hero-section {
        height: 100vh;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-section img, .about-section p {
        max-width: 100%;
    }

    .about-text {
        text-align: center;
    }

    footer img {
        max-width: 30%;
    }
}

@media (max-width: 1024px) {
    .hero-content img {
        max-width: 80%;
    }
    .hero-content{
        height: 50vh;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        padding-top: 100px;
    }
}

#different {
    padding: 60px 20px;
    text-align: center;
}

.different-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.different-boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.box {
    background-color: #df7b4a;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    margin: 20px;
    transition: 0.3s ease;
}

.box:hover{
    background-color: #9b5938;
    cursor: default;
}

.box.wide {
    flex: 100%;
}

.box h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.box h3::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s;
}

.box:hover h3::after {
    width: 100%;
}

.box p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.box-p{
    font-weight: bold;
}

.box li{
    font-size: 1.5rem;
    line-height: 1.6;
    list-style-type: none;
}

#contact-info p{
    font-size: 1.7rem;
}

footer {
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer img{
    max-width: 15%;
    height: auto;
}