/* Reset and Global Styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4A4A4A;
    background-color: #F8F8F8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    height: 40px;
}

nav a {
    text-decoration: none;
    color: #4A4A4A;
    margin-left: 20px;
}

nav a:hover {
    color: #3A6EA5;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    background: none;
}

.hero-split {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
}

.hero-image {
    flex: 1;
    max-height: 600px;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, rgba(233, 217, 194, 0.95) 0%, #e0c79d 50%, #f8f8f8 100%);
    padding: 3rem 2.5rem;
    color: #333;
}

.hero-text h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.hero-copy {
    max-width: 500px;
    margin: 0 auto;
}

.hero-copy p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.btn.primary.large {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #2d70b6;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.btn.primary.large:hover {
    background-color: #235b95;
}



/* Services Section */
.services {
    background-color: #F2EEE6;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #666;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.service-card h3 {
    color: #2d70b6;
    margin-bottom: 10px;
}

.service-card .service-tagline {
    font-weight: bold;
    margin-bottom: 15px;
    color: #444;
}

.service-card p {
    font-size: 0.98rem;
    margin-bottom: 15px;
    color: #555;
}

.service-icon {
    height: 40px;
    width: 40px;
    margin-bottom: 20px;
}

.services-cta {
    margin-top: 50px;
    text-align: center;
}



/* Header logo update */
.logo img {
    height: 70px;
}

/* Services section layout fix */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon {
    height: 40px;
    width: 40px;
    margin-bottom: 10px;
}

.service-card h3 {
    color: #2d70b6;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-tagline {
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #555;
}

.services-cta {
    margin-top: 50px;
    text-align: center;
}



/* Services card title fix */
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    height: 40px;
    width: 40px;
    flex-shrink: 0;
}

.service-card h3 {
    color: #2d70b6;
    font-size: 1.1rem;
    margin: 0;
}

.service-tagline {
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #555;
}



/* Contact Page */
.contact-hero {
    background-color: #F2EEE6;
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.125rem;
    color: #555;
}

.contact-section {
    background-color: #fff;
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.contact-form label {
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
}

.contact-form .btn {
    margin-top: 10px;
    width: fit-content;
}

.calendly-container {
    border-left: 1px solid #eee;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .calendly-container {
        border-left: none;
        padding-left: 0;
        margin-top: 40px;
    }
}

/* Fix logo height */
.logo img {
    height: 70px;
}
