
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background: #fffaf5;
    color: #333;
}
header {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/page1_img1.jpeg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.hero h1 {
    font-size: 4em;
    margin: 0;
    letter-spacing: 3px;
}
.hero p {
    font-size: 1.5em;
    margin: 10px 0 20px;
}
.cta-button {
    background: #ff7f50;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
    background: #ff6347;
    transform: scale(1.05);
}
section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7f50;
    margin: 10px auto 0;
    border-radius: 2px;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.about-image, .about-text {
    flex: 1 1 300px;
}
.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.image-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.contact p, .contact a {
    text-align: center;
    font-size: 1.2em;
    color: #333;
    text-decoration: none;
}
footer {
    text-align: center;
    padding: 25px;
    background: #ff7f50;
    color: #fff;
}
