* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #c2185b;
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background: white;
    color: #c2185b;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #f8d7e5;
}

/* Navigation */
nav {
    background: #880e4f;
    padding: 15px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 10px 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffd6e7;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: #fce4ec;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #880e4f;
}

.hero p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

/* Services */
.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px 20px;
    gap: 25px;
    background: #fff;
}

.card {
    background: #fff0f6;
    width: 260px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #c2185b;
    margin-bottom: 15px;
}

/* About Section */
.about {
    background: #f8bbd0;
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
    color: #880e4f;
    font-size: 32px;
}

.about p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

/* Footer */
footer {
    background: #880e4f;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

footer h2 {
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 15px;
}

footer a {
    color: #ffd6e7;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 25px;
    font-size: 14px;
}