*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #fff8f8;
    color: #333;
    line-height: 1.6;
}

header {
    height: 75px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #b76e79;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #b76e79;
}

.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 10%;
    background: linear-gradient(
        rgba(255, 235, 238, 0.85),
        rgba(255, 245, 246, 0.9)
    );
}

.hero-content {
    max-width: 650px;
}

.subtitle {
    color: #b76e79;
    font-size: 15px;
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #3e3032;
}

.hero p:not(.subtitle) {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.button {
    display: inline-block;
    padding: 14px 30px;
    background: #b76e79;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.button:hover {
    background: #955863;
}

section {
    padding: 80px 10%;
}

section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 35px;
    color: #3e3032;
}

.about {
    background: white;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 15px;
    color: #666;
    font-size: 17px;
}

.services {
    background: #fff8f8;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    width: 32%;
    padding: 35px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 42px;
    color: #b76e79;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #3e3032;
}

.service-card p {
    color: #777;
}

.login {
    background: #f8e9eb;
    display: flex;
    justify-content: center;
}

.login-box {
    width: 430px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
    margin-bottom: 10px;
}

.login-box > p {
    text-align: center;
    color: #777;
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 6px;
    font-size: 14px;
}

form input[type="text"],
form input[type="password"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 18px;
    font-size: 15px;
}

form input:focus {
    outline: none;
    border-color: #b76e79;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.remember label {
    margin: 0;
}

form button {
    padding: 13px;
    border: none;
    border-radius: 5px;
    background: #b76e79;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #955863;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.login-links a {
    color: #b76e79;
    text-decoration: none;
    font-size: 14px;
}

.login-links a:hover {
    text-decoration: underline;
}

footer {
    background: #3e3032;
    color: white;
    padding: 50px 10% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-content h3 {
    margin-bottom: 12px;
}

.footer-content p {
    color: #ddd;
    margin-bottom: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #66585a;
    color: #bbb;
}

@media (max-width: 768px) {

    header {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        min-height: 500px;
        padding: 60px 25px;
    }

    .hero h1 {
        font-size: 38px;
    }

    section {
        padding: 60px 25px;
    }

    .service-container {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .login-box {
        width: 100%;
        padding: 30px 20px;
    }
}
