:root {
    --tomato-primary: #ff6347;
    --tomato-dark: #e74c3c;
    --tomato-light: #ff8c7a;
    --tomato-bg: #fff5f3;
    --tomato-accent: #ff4500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--tomato-dark);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--tomato-primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 400px;
}

.values-section {
    background-color: var(--tomato-bg);
    padding: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--tomato-primary);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--tomato-dark);
    margin-bottom: 15px;
}

.team-section {
    padding: 60px 0;
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background-color: var(--tomato-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--tomato-dark);
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}


/* About Us Page - Responsive Styles */
@media (max-width: 1200px) {
.container {
padding: 5 30px;
}

.hero-content h1 {
font-size: 2.8rem;
}
}

@media (max-width: 992px) {
/* Hero Section */
.hero-section {
height: 50vh;
}

.hero-content h1 {
font-size: 2.5rem;
}

.hero-content p {
font-size: 1.1rem;
}

/* About Content */
.about-content {
flex-direction: column;
}

.about-image {
min-height: 350px;
order: -1; /* Image above text on mobile */
}

/* Values Grid */
.values-grid {
grid-template-columns: repeat(2, 1fr);
}

/* Section Padding */
.values-section, .team-section {
padding: 50px 0;
}
}

@media (max-width: 768px) {
/* Hero Section */
.hero-section {
height: 40vh;
}

.hero-content h1 {
font-size: 2.2rem;
}

/* Values Grid */
.values-grid {
gap: 20px;
}

/* CTA Section */
.cta-content h2 {
font-size: 2rem;
}

/* Adjust for fixed header */
body {
padding-top: 70px;
}
}

@media (max-width: 576px) {
/* Hero Section */
.hero-section {
height: 35vh;
}

.hero-content h1 {
font-size: 1.8rem;
margin-bottom: 15px;
}

.hero-content p {
font-size: 1rem;
}

/* About Content */
.about-text, .about-image {
min-width: 100%;
}

.about-image {
min-height: 250px;
}

/* Values Grid */
.values-grid {
grid-template-columns: 1fr;
}

.value-card {
padding: 25px;
}

/* CTA Section */
.cta-section {
padding: 60px 20px;
}

.cta-content h2 {
font-size: 1.8rem;
}

.btn {
padding: 12px 28px;
}
}

/* Extra Small Devices */
@media (max-width: 400px) {
.hero-content h1 {
font-size: 1.6rem;
}

.section-title {
font-size: 1.8rem;
}

.value-icon {
font-size: 2rem;
}
}

/* Print Styles */
@media print {
.new-header, .cta-section, .mobile-toggle {
display: none !important;
}

body {
padding-top: 0;
background: none !important;
color: #000 !important;
font-size: 12pt;
}

.container {
max-width: 100% !important;
padding: 0 !important;
}

a::after {
content: " (" attr(href) ")";
font-size: 0.8em;
font-weight: normal;
}

.hero-section, .about-image, .values-section {
break-inside: avoid;
}

.values-grid {
grid-template-columns: 1fr 1fr !important;
}
}

/* Special Adjustments for Mobile Menu */
@media (max-width: 992px) {
.about-page body.menu-open {
overflow: hidden;
position: fixed;
}
}

/* Image Optimization */
/* @media (-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) {
.hero-section,
.about-image,
.cta-section {
background-image: url('img/[email protected]');
}
} */

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
