* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #4a4a4a;
    background: linear-gradient(135deg, #DFC1CB 0%, white 50%, #DFC1CB 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
header {
    background: linear-gradient(135deg, #B66681, #C48197);
    color: white;
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(182, 102, 129, 0.3);
}

.header-content {
    text-align: center;
}

.logo h1 {
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 18px;
    opacity: 0.9;
    font-style: italic;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(182, 102, 129, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 5px 10px;
}

.nav-menu a {
    text-decoration: none;
    color: #B66681;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 25px;
    display: block;
    font-size: 16px;
    border: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, #B66681, #C48197);
    color: white;
    box-shadow: 0 4px 15px rgba(182, 102, 129, 0.4);
}

/* Main content */
main {
    padding: 40px 0;
}

/* Hero section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(182, 102, 129, 0.15);
}

.hero-content {
    flex: 1 1 350px;
    padding-right: 30px;
    margin-bottom: 20px;
    min-width: 280px;
}

.hero-content h1 {
    font-size: 32px;
    color: #B66681;
    margin-bottom: 36px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: justify;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #B66681, #C48197);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(182, 102, 129, 0.4);
    text-align: center;
    min-width: 140px;
    margin: 5px 10px 5px 0;
}

.cta-button:hover {
    box-shadow: 0 6px 20px rgba(182, 102, 129, 0.6);
    background: linear-gradient(135deg, #C48197, #B66681);
}

.cta-button.secondary {
    background: transparent;
    color: #B66681;
    border: 2px solid #B66681;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #B66681;
    color: white;
    box-shadow: 0 4px 15px rgba(182, 102, 129, 0.4);
}

.hero-image {
    flex: 1 1 300px;
    height: 300px;
    background: linear-gradient(135deg, #DFC1CB, #C48197);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(182, 102, 129, 0.3);
    min-width: 250px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Services section */
.services-preview {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    color: #B66681;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 20px;
    margin: 12px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(182, 102, 129, 0.15);
    text-align: center;
    flex: 1 1 250px;
    max-width: 320px;
    min-width: 250px;
    border: 1px solid rgba(182, 102, 129, 0.1);
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(182, 102, 129, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.service-card h2 {
    color: #B66681;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    text-align: justify;
}

/* About section */
.about-preview {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(182, 102, 129, 0.15);
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 350px;
    padding-right: 30px;
    margin-bottom: 20px;
    min-width: 280px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 30px;
    color: #B66681;
    font-weight: bold;
}

.about-text p {
    text-align: justify;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.about-image {
    flex: 1 1 280px;
    height: 260px;
    background: linear-gradient(135deg, #DFC1CB, #C48197);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(182, 102, 129, 0.2);
    min-width: 230px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #B66681, #4a4a4a);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-section {
    flex: 1 1 220px;
    margin: 15px;
    min-width: 180px;
}

.footer-section h3 {
    color: #DFC1CB;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.footer-section p {
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #DFC1CB;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
    min-width: 85px;
    text-align: center;
    margin: 3px 8px 3px 0;
}

.social-links a:hover {
    background: #DFC1CB;
    color: #B66681;
    border-color: #DFC1CB;
}

.contact-info span {
    font-weight: bold;
    margin-right: 8px;
}

.contact-info p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    opacity: 0.9;
}