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

:root {
    --primary-color: #E39B43;
    --secondary-color: #363636;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666666;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

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

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Buttons */
.cta-button, .primary-button, .secondary-button, .submit-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
}

.secondary-button {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 1px solid var(--medium-gray);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    font-size: 16px;
}

.submit-button span {
    margin-left: 10px;
}

.cta-button:hover, .primary-button:hover, .submit-button:hover {
    background-color: #d18a32;
}

.secondary-button:hover {
    background-color: var(--light-gray);
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--medium-gray);
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 24px;
    margin-bottom: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

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

nav ul li a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 18px;
    color: var(--dark-gray);
}

.hero-text h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.hero-images {
    flex: 1;
    display: flex;
    gap: 20px;
}

.small-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.main-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 20px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-gray);
    font-size: 14px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-images {
    flex: 1;
    position: relative;
}

.about-image-1 {
    width: 80%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-image-2 {
    position: absolute;
    width: 60%;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--dark-gray);
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input {
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 16px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

/* Footer */
footer {
    padding: 50px 0 20px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.social-icons img {
    width: 20px;
    height: 20px;
}

footer hr {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content, .about-content {
        flex-direction: column;
    }
    
    .hero-images {
        order: -1;
    }
    
    .about-images {
        margin-bottom: 30px;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .nav-container {
        position: relative;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--box-shadow);
        z-index: 10;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-images {
        flex-direction: column;
    }
    
    .small-images {
        flex-direction: row;
        justify-content: center;
    }
    
    .main-image {
        text-align: center;
    }
    
    .features h2, .about-text h2, .testimonials h2, .contact h2 {
        font-size: 26px;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .small-images img {
        width: 80px;
        height: 80px;
    }
}