/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff6f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #e73c30;
    text-transform: uppercase;
}

h2 {
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    color: #e73c30;
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    background-color: #fff6f5;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e73c30;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 3rem 0 2rem;
}

.hero-content {
    max-width: 950px;
}

.hero p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Office Image */
.office-image {
    margin: 2rem 0;
}

.office-image img {
    width: 100%;
    border-radius: 4px;
}

/* Services & Clients Section */
.services-clients {
    padding: 3rem 0;
    display: flex;
}

.services-clients .container {
    display: flex;
    gap: 4rem;
}

.services-container {
    flex: 3;
}

.clients-container {
    flex: 2;
}

.service-item {
    margin-bottom: 2.5rem;
}

.service-item p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.client-type {
    margin-bottom: 1rem;
}

.client-type p {
    font-size: 0.9rem;
}

.approach-step {
    margin-bottom: 1.5rem;
}

.approach-step p {
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    background-color: #fff;
    color: #e73c30;
    padding: 8px 16px;
    border: 1px solid #e73c30;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e73c30;
    color: #fff;
}

/* Working Image */
.working-image {
    margin: 2rem 0;
}

.working-image img {
    width: 100%;
    border-radius: 4px;
}

/* CTA Section */
.cta {
    padding: 3rem 0;
}

.cta-content {
    display: flex;
    gap: 4rem;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    color: #e73c30;
}

.cta-form {
    flex: 1;
}

.form-group {
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #e73c30;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #d32a1e;
}

/* Thank You Page */
.thank-you {
    padding: 5rem 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you h1 {
    color: #333;
    text-transform: none;
    margin-bottom: 1.5rem;
}

.thank-you p {
    margin-bottom: 2rem;
}

.btn-thankyou {
    display: inline-block;
    background-color: #e73c30;
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-thankyou:hover {
    background-color: #d32a1e;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    font-weight: 700;
    color: #e73c30;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-clients .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

html {
    scroll-behavior: smooth !important;
}