*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#db97b9;
    color:#444;
}

.navbar{
    position:fixed;
    top:0;
    width:100%;
    background:#c445eb;
    display:flex;
    justify-content:center;
    gap:15px;
    padding:15px;
    z-index:1000;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
}

.nav-btn{
    text-decoration:none;
    color:white;
    font-weight:bold;
    padding:10px 18px;
    border-radius:20px;
    transition:.3s;
}

.nav-btn:hover,
.nav-btn.active{
    background:white;
    color:#ff69b4;
}

.page-section,
.hero{
    min-height:100vh;
    padding:120px 20px 60px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.container{
    width:90%;
    max-width:1100px;
}

h1{
    font-size:3rem;
    color:#721de2;
}

h2{
    font-size:2.2rem;
    margin-bottom:15px;
    color:#f034e6;
}

.section-intro{
    margin-bottom:35px;
}

.main-photo{
    width:280px;
    margin-top:30px;
    border-radius:20px;
    border:6px solid white;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.about-content{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.about-photo{
    width:260px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.about-text{
    max-width:500px;
    text-align:left;
    line-height:1.8;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.feature-card{
    background:rgb(164, 245, 177);
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 12px rgba(0,0,0,.1);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    font-size:35px;
    color:#ff69b4;
}

.photo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.photo-card{
    background:rgb(164, 245, 177);
    padding:15px;
    border-radius:15px;
    box-shadow:0 5px 12px rgba(0,0,0,.1);
}

.photo-card img{
    width:100%;
    border-radius:10px;
}

figcaption{
    margin-top:10px;
    font-weight:bold;
}

   /* Contact Section */
.contact-container{
    max-width:700px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    border:2px solid #ffd1dc;
    border-radius:10px;
    outline:none;
    font-size:1rem;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#ff69b4;
}

.contact-form textarea{
    resize:vertical;
    min-height:120px;
}

.contact-btn{
    background:#ff69b4;
    color:white;
    border:none;
    padding:12px;
    border-radius:10px;
    font-size:1rem;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#ff4f93;
}