/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
    
}
.container h1{
    color: orange;
    font-family: "Playwrite GB S", cursive;
}


.about-text h2{
    color: black;
    font-family: "Playwrite GB S", cursive;
}
/* Header */
header h1 {
    text-align: center;
    font-size: 2.5em;
    color: #f4a261;
    margin: 20px 0;

}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.image-container {
    flex: 1;
    text-align: center;
}

.about-image {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2em;
    color: #264653;
}

.about-text p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text h2 {
        text-align: center;
    }
}