* {
    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;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Professional Typography Improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    line-height: 1.7;
}

/* Enhanced Shadows and Depth */
.card-shadow {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-shadow-hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Header */
.header {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.header-top {
    text-align: right;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.top-links {
    display: inline-flex;
    gap: 20px;
    align-items: center;
}

.top-links a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
}

.search-icon {
    margin-left: 15px;
    cursor: pointer;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.search-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #666;
    border-radius: 50%;
    position: absolute;
}

.search-icon::after {
    content: '';
    width: 2px;
    height: 8px;
    background: #666;
    position: absolute;
    bottom: 2px;
    right: 2px;
    transform: rotate(45deg);
    transform-origin: bottom;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #A0522D;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a.active {
    color: #A0522D;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white !important;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45a049, #388e3c);
    box-shadow: 0 5px 18px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    background: #fff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c2c2c;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-text p {
    font-size: 20px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-green {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 16px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    border: none;
    cursor: pointer;
}

.btn-green:hover {
    background: linear-gradient(135deg, #45a049, #388e3c);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.btn-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.btn-link:hover {
    text-decoration: underline;
}

.hero-image {
    position: relative;
    height: 550px;
    overflow: visible;
}

.golden-shape {
    position: absolute;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffc107, #ffd700);
    border-radius: 50% 0 50% 50%;
    z-index: 1;
    opacity: 0.9;
    filter: blur(0px);
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: 0;
    left: -80px;
    transform: rotate(-15deg);
    border-radius: 50% 0 50% 50%;
}

.hero-person {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-face {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 3;
    margin: 0 auto;
}

.person-laptop {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.laptop-screen {
    width: 280px;
    height: 180px;
    background: #1a1a1a;
    border-radius: 8px 8px 0 0;
    padding: 15px;
    border: 3px solid #333;
    position: relative;
}

.video-call {
    display: flex;
    gap: 8px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.video-participant {
    flex: 1;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 4px;
    position: relative;
}

.video-participant::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.phone-screen {
    position: absolute;
    top: 120px;
    right: 80px;
    width: 90px;
    height: 160px;
    background: #222;
    border-radius: 12px;
    padding: 10px;
    border: 3px solid #333;
    z-index: 4;
}

.social-feed {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feed-item {
    flex: 1;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

/* Key Features */
.key-features {
    padding: 120px 0;
    background: #fff;
}

.key-features .centered-content {
    text-align: center;
    margin-bottom: 60px;
}

.key-features .centered-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.key-features .centered-content .subheading {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-box {
    text-align: center;
    padding: 50px 30px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #A0522D;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: #fff;
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.2);
    transform: scale(1.05);
}

/* Gear Icon */
.icon-gear {
    background: #f0f0f0;
    border-radius: 50%;
}

.gear-icon {
    width: 60px;
    height: 60px;
    border: 5px solid #A0522D;
    border-radius: 50%;
    position: relative;
    background: transparent;
}

.gear-icon::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    top: -5px;
    left: -5px;
    background: 
        linear-gradient(0deg, transparent 20%, #A0522D 20%, #A0522D 30%, transparent 30%),
        linear-gradient(90deg, transparent 20%, #A0522D 20%, #A0522D 30%, transparent 30%),
        linear-gradient(45deg, transparent 20%, #A0522D 20%, #A0522D 30%, transparent 30%),
        linear-gradient(135deg, transparent 20%, #A0522D 20%, #A0522D 30%, transparent 30%);
    border-radius: 50%;
}

.gear-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #A0522D;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f0f0f0;
}

/* Monitor with Chat Icon */
.icon-support {
    background: #f0f0f0;
    border-radius: 10px;
}

.monitor-icon {
    width: 70px;
    height: 50px;
    background: #A0522D;
    border-radius: 5px 5px 0 0;
    position: relative;
    border: 3px solid #8B4513;
}

.monitor-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 10px;
    background: #A0522D;
    border-radius: 0 0 4px 4px;
    border-left: 3px solid #8B4513;
    border-right: 3px solid #8B4513;
    border-bottom: 3px solid #8B4513;
}

.chat-bubble {
    position: absolute;
    top: -15px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #4caf50;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.chat-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

/* Hand with Card Icon */
.icon-ease {
    background: #f0f0f0;
    border-radius: 10px;
}

.hand-icon {
    width: 45px;
    height: 55px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 22px 22px 5px 5px;
    position: relative;
    transform: rotate(-25deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hand-icon::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 4px;
    width: 12px;
    height: 18px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 0 0 4px 4px;
}

.hand-icon::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 4px;
    width: 12px;
    height: 18px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 0 0 4px 4px;
}

.card-icon {
    position: absolute;
    top: 10px;
    right: -15px;
    width: 40px;
    height: 28px;
    background: #A0522D;
    border-radius: 3px;
    transform: rotate(15deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 2px solid #8B4513;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Client Logos Section */
.client-logos-section {
    padding: 120px 0;
    background: #f8f8f8;
}

.client-logos-section .centered-content {
    text-align: center;
    margin-bottom: 50px;
}

.client-logos-section .centered-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center;
}

.client-logo-item {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 10px;
    font-weight: 600;
    color: #666;
    font-size: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.client-logo-item:hover {
    border-color: #A0522D;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(160, 82, 45, 0.2);
    background: #fafafa;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse .section-text {
    order: 2;
}

.section-content.reverse .section-image {
    order: 1;
}

.section-text h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c2c2c;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Building Section */
.building-section {
    background: #fff;
    padding: 120px 0;
}

.red-shape {
    position: absolute;
    background: linear-gradient(135deg, #A0522D, #CD853F, #D2691E, #A0522D);
    border-radius: 50% 50% 0 50%;
    z-index: 1;
    opacity: 0.9;
    filter: blur(0px);
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    transform: rotate(15deg);
}

.section-image {
    position: relative;
    min-height: 400px;
}

.video-thumbnail {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    min-height: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.venn-diagram {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: white;
}

.circle-1 {
    background: #4caf50;
    left: 20%;
    top: 20%;
}

.circle-2 {
    background: #2196F3;
    right: 20%;
    top: 20%;
}

.circle-3 {
    background: #ff9800;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #A0522D;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.4);
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: #8B4513;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(160, 82, 45, 0.5);
}

.play-button {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
    position: relative;
}

.play-button.icon-play {
    width: auto;
    height: auto;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button.icon-play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Testimonial */
.testimonial {
    padding: 100px 0;
    background: #f8f8f8;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 100px;
    color: #A0522D;
    margin-bottom: 30px;
    font-weight: bold;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 28px;
    color: #333;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 18px;
    color: #999;
    margin-bottom: 30px;
}

.testimonial-logo-small {
    font-size: 20px;
    font-weight: bold;
    color: #A0522D;
}

/* Magical Experience */
.magical-experience {
    background: #fff;
    padding: 120px 0;
}

.shape-3 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    transform: rotate(-20deg);
}

.donation-form-preview {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-overlap {
    position: absolute;
    top: 60px;
    right: -30px;
    z-index: 3;
}

.form-small-overlay {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    width: 200px;
}

.dropdown-menu {
    background: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.dropdown-header {
    padding: 12px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.dropdown-option {
    padding: 10px 12px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: #f0f0f0;
}

.form-header {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.form-amount {
    margin-bottom: 25px;
}

.amount-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.amount-buttons {
    display: flex;
    gap: 10px;
}

.amt-btn {
    flex: 1;
    padding: 15px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.form-frequency {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.freq-option {
    flex: 1;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    color: #666;
}

.freq-option.active {
    background: #4caf50;
    color: white;
}

.payment-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.payment-field {
    height: 50px;
    background: #f5f5f5;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Turn Visitors */
.turn-visitors {
    background: #fafafa;
}

.shape-4 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -80px;
    transform: rotate(-15deg);
}

.tablet-hands {
    position: relative;
    z-index: 2;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablet-screen {
    font-size: 200px;
}

.coffee-cup {
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 80px;
}

/* Best Support */
.best-support {
    background: #fff;
}

.shape-5 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    transform: rotate(15deg);
}

.video-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-person {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

/* Integrations */
.integrations {
    background: #fafafa;
}

.centered-content {
    text-align: center;
    margin-bottom: 50px;
}

.centered-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.centered-content p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.integration-logos .logo-item {
    padding: 25px 40px;
    background: #fff;
    border-radius: 8px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    filter: none;
}

.integration-logos .logo-item:hover {
    border-color: #4caf50;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Pricing Section */
.pricing-section {
    background: #fff;
}

.shape-6 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -80px;
    transform: rotate(-20deg);
}

.pricing-person {
    position: relative;
    z-index: 2;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-working {
    font-size: 200px;
}

.notebook {
    position: absolute;
    bottom: 80px;
    right: 100px;
    font-size: 60px;
}

/* More Features Section */
.more-features {
    padding: 120px 0;
    background: #fff;
}

.more-features .centered-content {
    text-align: center;
    margin-bottom: 60px;
}

.more-features .centered-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

.feature-item-small {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.feature-item-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #A0522D;
}

.feature-item-small:hover .feature-icon-small {
    transform: scale(1.1);
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-item-small h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

.feature-item-small p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Discover Banner */
.discover-banner {
    padding: 0;
}

.reddish-banner {
    background: linear-gradient(135deg, #A0522D, #CD853F, #D2691E, #A0522D);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.reddish-banner h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -0.5px;
}

.reddish-banner p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.btn-white {
    display: inline-block;
    background: #fff;
    color: #A0522D;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Blog Section */
.blog-section {
    background: #fff;
}

.article-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #A0522D;
}

.card-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.card-img-1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.card-img-2 {
    background: linear-gradient(135deg, #4caf50, #388E3C);
}

.card-img-3 {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.article-card h3 {
    font-size: 20px;
    margin: 25px 25px 15px;
    line-height: 1.4;
    color: #333;
}

.read-more {
    display: inline-block;
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
    margin: 0 25px 25px;
    font-size: 16px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Partners */
.partners {
    padding: 80px 0;
    background: #fafafa;
}

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

.partner-logo {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    font-weight: 500;
    color: #666;
    font-size: 14px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: #fff;
}

.footer-newsletter {
    background: #f0f0f0;
    padding: 40px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .email-input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    min-width: 250px;
}

.footer-main {
    padding: 60px 0;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #A0522D;
}

.footer-address,
.footer-contact {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #45a049;
    text-decoration: underline;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #A0522D;
}

.footer-bottom {
    background: #f0f0f0;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
}

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

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

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #A0522D;
}

.copyright {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: #fff;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.pricing-plans {
    padding: 100px 0;
    background: #f8f8f8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: #A0522D;
}

.pricing-card.featured {
    border: 3px solid #A0522D;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #A0522D;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.currency {
    font-size: 24px;
    color: #666;
    font-weight: 600;
}

.amount {
    font-size: 56px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 5px;
}

.period {
    font-size: 18px;
    color: #666;
}

.plan-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 12px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px;
    background: #4caf50;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-pricing:hover {
    background: #45a049;
}

.featured-btn {
    background: #A0522D;
}

.featured-btn:hover {
    background: #8B4513;
}

.comparison-section {
    padding: 100px 0;
    background: #fff;
}

.comparison-table {
    margin-top: 50px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: #A0522D;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: #f8f8f8;
}

.faq-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.pricing-cta {
    padding: 0;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, #fafafa);
}

.about-me-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-me-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-me-header h1 {
    font-size: 48px;
    color: #A0522D;
    margin-bottom: 10px;
}

.about-me-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-image-container {
    position: relative;
}

.about-profile-image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.profile-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.2);
    border: 4px solid #fff;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(160, 82, 45, 0.3);
}

.profile-image-placeholder {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: linear-gradient(135deg, #fff5e6, #ffe4b5);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.2);
    overflow: hidden;
    border: 4px solid #fff;
}

.profile-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.profile-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.about-info {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    line-height: 1.8;
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.info-item strong {
    color: #A0522D;
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

.info-item a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #45a049;
    text-decoration: underline;
}

.about-dream {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid #A0522D;
}

.about-dream h3 {
    font-size: 28px;
    color: #A0522D;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-dream p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.about-image-placeholder {
    position: relative;
    z-index: 2;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-radius: 15px;
}

.team-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-section {
    padding: 120px 0;
    background: #f8f8f8;
}

.mission-visual {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mission-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #A0522D, #CD853F);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.team-section {
    padding: 120px 0;
    background: #fff;
}

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

.team-member {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #A0522D, #CD853F);
    position: relative;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.member-role {
    color: #A0522D;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.values-section {
    padding: 120px 0;
    background: #f8f8f8;
}

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

.value-item {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.about-cta {
    padding: 0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: #fff;
    text-align: center;
}

.contact-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    position: relative;
}

.shape-contact {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
    transform: rotate(15deg);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A0522D;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    margin-bottom: 8px;
    font-size: 15px;
}

.hours-section {
    padding: 100px 0;
    background: #fff;
}

.hours-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.shape-hours {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    transform: rotate(-20deg);
}

.hours-card {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 50px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hours-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: center;
}

.hours-list {
    margin-bottom: 25px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #666;
}

.hours-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.faq-quick {
    padding: 100px 0;
    background: #f8f8f8;
}

.faq-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.faq-link-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.faq-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.faq-link-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-link-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.faq-link-card p {
    color: #666;
    font-size: 14px;
}

.contact-cta {
    padding: 0;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #A0522D;
    padding: 10px;
    transition: color 0.3s;
}

.mobile-menu-toggle:hover {
    color: #8B4513;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #A0522D;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-grid-8 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .section-text h2 {
        font-size: 36px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header Mobile */
    .header-top {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .top-links {
        gap: 15px;
    }
    
    .top-links a {
        font-size: 12px;
    }
    
    .navbar {
        flex-direction: row;
        gap: 0;
        padding: 15px 0;
        position: relative;
    }
    
    .logo {
        font-size: 24px;
        flex: 1;
        text-align: left;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        background: transparent;
        border: 2px solid transparent;
        cursor: pointer;
    }
    
    .mobile-menu-toggle:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .nav-links {
        display: none !important;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: #fff;
        padding: 0;
        border-top: 1px solid #eee;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        opacity: 0;
    }
    
    .nav-links.active {
        display: flex !important;
        max-height: 600px;
        padding: 20px 0;
        opacity: 1;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        font-size: 16px;
    }
    
    .nav-links .btn-primary {
        margin: 15px 20px;
        text-align: center;
        width: calc(100% - 40px);
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .person-face {
        width: 120px;
        height: 120px;
    }
    
    /* Section Content */
    .section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-content.reverse .section-text,
    .section-content.reverse .section-image {
        order: initial;
    }
    
    .section-text {
        text-align: center;
    }
    
    .section-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .features-grid-8 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item-small {
        padding: 25px 15px;
    }
    
    /* Client Logos */
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo-item {
        padding: 25px 15px;
        font-size: 14px;
        min-height: 70px;
    }
    
    /* Testimonial */
    .testimonial {
        padding: 60px 0;
    }
    
    .testimonial-content {
        padding: 20px;
        border-left: 3px solid #A0522D;
    }
    
    .quote-icon {
        font-size: 60px;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        margin: 0;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .email-input {
        width: 100%;
        padding: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Typography */
    .key-features .centered-content h2,
    .more-features .centered-content h2 {
        font-size: 28px;
    }
    
    .reddish-banner h2 {
        font-size: 28px;
    }
    
    .pricing-hero h1,
    .contact-hero h1,
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-me-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-me-header h1 {
        font-size: 36px;
    }
    
    .about-info {
        padding: 30px 20px;
    }
    
    .info-item {
        font-size: 16px;
    }
    
    .info-item strong {
        display: block;
        margin-bottom: 5px;
        min-width: auto;
    }
    
    .about-dream h3 {
        font-size: 24px;
    }
    
    .about-dream p {
        font-size: 16px;
    }
    
    /* Buttons */
    .btn-green,
    .btn-primary,
    .btn-white {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Decorative Shapes */
    .golden-shape,
    .red-shape {
        display: none;
    }
    
    /* Video Thumbnail */
    .video-thumbnail {
        padding: 20px;
        min-height: 250px;
    }
    
    .venn-diagram {
        height: 200px;
    }
    
    .circle {
        font-size: 12px;
        padding: 15px;
    }
    
    .play-overlay {
        width: 80px;
        height: 80px;
    }
    
    /* Donation Form */
    .donation-form-preview {
        padding: 20px;
    }
    
    .amount-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .amt-btn {
        width: 100%;
    }
    
    /* Article Cards */
    .article-cards {
        grid-template-columns: 1fr;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Section Padding */
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    /* Centered Content */
    .centered-content {
        margin-bottom: 40px;
    }
    
    .centered-content h2 {
        font-size: 28px;
    }
    
    .centered-content p {
        font-size: 16px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-text h2 {
        font-size: 24px;
    }
    
    .key-features .centered-content h2,
    .more-features .centered-content h2 {
        font-size: 24px;
    }
    
    .reddish-banner h2 {
        font-size: 24px;
    }
    
    .pricing-hero h1,
    .contact-hero h1,
    .about-hero h1 {
        font-size: 28px;
    }
    
    .about-me-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-me-header h1 {
        font-size: 32px;
    }
    
    .about-info {
        padding: 30px 20px;
    }
    
    .info-item {
        font-size: 16px;
    }
    
    .info-item strong {
        display: block;
        margin-bottom: 5px;
        min-width: auto;
    }
    
    .about-dream h3 {
        font-size: 22px;
    }
    
    .about-dream p {
        font-size: 15px;
    }
    
    .feature-box {
        padding: 25px 15px;
    }
    
    .feature-item-small {
        padding: 20px 15px;
    }
    
    .client-logo-item {
        padding: 20px 10px;
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-green,
    .btn-primary,
    .btn-white {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .quote-icon {
        font-size: 50px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    /* Touch-friendly targets */
    button,
    a.btn-green,
    a.btn-primary,
    a.btn-white {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for small screens */
    .header-top {
        padding: 8px 0;
    }
    
    .top-links {
        gap: 10px;
    }
}

/* Landscape Mobile (max-width: 768px and orientation: landscape) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .btn-green,
    .btn-primary,
    .btn-white {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ============================================
   UNIFIED BRANDING COLOR SCHEME
   Primary: Reddish-Brown (#A0522D, #8B4513)
   Secondary: Gold (#ffd700, #ffed4e)
   Accent: Green (#4caf50) for CTAs
   ============================================ */

/* Unified Logo Color */
.logo {
    color: #A0522D;
}

/* Unified Active Navigation */
.nav-links a.active {
    color: #A0522D;
    font-weight: 600;
}

/* Unified Button Colors */
.btn-primary,
.btn-green {
    background: linear-gradient(135deg, #4caf50, #45a049);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover,
.btn-green:hover {
    background: linear-gradient(135deg, #45a049, #388e3c);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Unified Link Colors */
.btn-link {
    color: #4caf50;
}

.read-more {
    color: #4caf50;
}

/* Unified Decorative Shapes */
.golden-shape {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffc107, #ffd700);
    opacity: 0.9;
}

.red-shape {
    background: linear-gradient(135deg, #A0522D, #CD853F, #D2691E, #A0522D);
    opacity: 0.9;
}

/* Unified Section Backgrounds */
body {
    background: #ffffff;
}

section:nth-child(even) {
    background: #fafafa;
}

section:nth-child(odd) {
    background: #ffffff;
}

/* Unified Feature Boxes */
.feature-box {
    border: 2px solid #f0f0f0;
    background: #ffffff;
}

.feature-box:hover {
    border-color: #A0522D;
    box-shadow: 0 8px 25px rgba(160, 82, 45, 0.15);
}

.feature-icon {
    background: #f8f8f8;
}

.feature-box:hover .feature-icon {
    background: #fff5e6;
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.2);
}

/* Unified Quote and Testimonial */
.quote-icon {
    color: #A0522D;
}

.testimonial-logo-small {
    color: #A0522D;
}

.testimonial-content {
    border-left: 5px solid #A0522D;
    padding-left: 30px;
}

/* Unified Client Logos */
.client-logo-item {
    border: 2px solid #f0f0f0;
    background: #ffffff;
}

.client-logo-item:hover {
    border-color: #A0522D;
    background: #fff5e6;
}

/* Unified Play Button */
.play-overlay {
    background: #A0522D;
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.4);
}

.play-overlay:hover {
    background: #8B4513;
}

/* Unified Feature Items */
.feature-item-small {
    border: 2px solid #f0f0f0;
    background: #ffffff;
}

.feature-item-small:hover {
    border-color: #A0522D;
    box-shadow: 0 8px 25px rgba(160, 82, 45, 0.15);
}

/* Unified Section Headings */
.section-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #A0522D, #ffd700);
    margin-top: 15px;
    border-radius: 2px;
}

.centered-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #A0522D, #ffd700);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Unified Article Cards */
.article-card {
    border-left: 4px solid #A0522D;
}

/* Unified Form Styling */
.donation-form-preview {
    border-top: 4px solid #A0522D;
}

/* Unified Icon Colors */
.icon-gear .gear-icon,
.monitor-icon,
.card-icon {
    border-color: #A0522D;
    background: #A0522D;
}

.icon-gear .gear-icon::after,
.chat-bubble {
    background: #A0522D;
}

.hand-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.icon-boxes::before,
.icon-boxes::after,
.icon-medal::before,
.icon-lock::before,
.icon-chart::before,
.icon-chart::after,
.icon-checklist::before,
.icon-envelope::before,
.icon-pencil::before {
    border-color: #A0522D;
    background: #A0522D;
}

.icon-cookie {
    background: #ffd700;
}

.icon-medal::after {
    background: #A0522D;
    border-color: #A0522D;
}

/* Unified Video and Feed Colors */
.video-participant {
    background: linear-gradient(135deg, #A0522D, #8B4513);
}

.feed-item {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.icon-person {
    background: linear-gradient(135deg, #A0522D, #CD853F);
}

/* Unified Venn Diagram Colors */
.circle-1 {
    background: #A0522D;
}

.circle-2 {
    background: #ffd700;
}

.circle-3 {
    background: #4caf50;
}

/* Unified Donation Form Colors */
.amt-btn,
.freq-option.active {
    background: #4caf50;
}

/* Unified Banner Colors */
.reddish-banner {
    background: linear-gradient(135deg, #A0522D, #CD853F, #D2691E, #A0522D);
}

.golden-banner {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffc107, #ffd700);
}

/* Unified Header Styling */
.header-top {
    background: linear-gradient(90deg, transparent, #fff5e6, transparent);
}

.header {
    border-bottom: 2px solid #f0f0f0;
}
