/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1f2937;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.2;
    color: #111827;
}

h2 {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.3;
    color: #111827;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: #111827;
}

h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #111827;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #e70063;
    color: #ffffff;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: opacity 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #e70063;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-text {
    font-size: 1.25rem;
    color: #111827;
    font-weight: 500;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: #374151;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e70063;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* main Section */
.main {
    background-color: #ffffff;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .main {
        padding: 8rem 0;
    }
}

.main-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.main h1 {
    margin-bottom: 1.5rem;
}

.main-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-image {
    height: 12rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.checkmark {
    color: #e70063;
    font-weight: 600;
}

/* About Section */
.about {
    background-color: #ffffff;
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    gap: 1rem;
}

.stat-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #e70063;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon span {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.stat-content h4 {
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: #4b5563;
}

.approach {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 2rem;
}

.approach h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background-color: #e70063;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
}

.approach-step p {
    color: #4b5563;
    margin-left: 2.5rem;
}

/* Contact Section */
.contact {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.contact-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: #e70063;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon span {
    color: #ffffff;
    font-size: 1.25rem;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #4b5563;
}

.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #111827;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e70063;
    box-shadow: 0 0 0 3px rgba(231, 0, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #4b5563;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #e70063;
}

.footer-column p {
    color: #4b5563;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.footer-bottom p {
    color: #4b5563;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
