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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

a{
    text-decoration: none;
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    color: #222;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #28a745;
    color: #ffffff;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #218838;
}

.btn-success {
    background-color: #25D366;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #20ba5a;
}

.btn-secondary {
    background-color: transparent;
    color: #28a745;
    border: 2px solid #28a745;
}

.btn-secondary:hover {
    background-color: #28a745;
    color: #ffffff;
}

.btn-contact {
    background-color: #28a745;
    color: #ffffff;
    margin: 0 10px;
}

.btn-contact:hover {
    background-color: #218838;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    margin: 0 10px;
}

.btn-whatsapp:hover {
    background-color: #1ebd58;
}

.icon {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    padding: 80px 0 100px;
    text-align: center;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 400px;
    height: auto;
}

.hero-title {
    margin-bottom: 20px;
    color: #222;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* What We Do Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    color: #28a745;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
}

/* Why Choose Section */
.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 40px auto 0;
}

.benefits-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    display: block;
    color: #28a745;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefits-list span {
    display: block;
    color: #666;
}

/* Our Approach Section */
.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #28a745;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #222;
}

.step p {
    color: #666;
    margin-bottom: 0;
}

/* Sample Work Section */
.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sample-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.sample-preview {
    background-color: #f9f9f9;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
}

.sample-placeholder {
    color: #999;
    font-size: 1.125rem;
    text-align: center;
    padding: 20px;
}

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


.sample-card h3 {
    padding: 20px 20px 10px;
    color: #222;
}

.sample-card p {
    padding: 0 20px 20px;
    color: #666;
    margin-bottom: 0;
}

/* Who This Is For Section */
.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.audience-card h3 {
    color: #222;
    margin-bottom: 15px;
}

.audience-card p {
    color: #666;
    margin-bottom: 0;
}

/* Who This Is NOT For Section */
.not-for-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.not-for-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.not-for-item:last-child {
    margin-bottom: 0;
}

.not-for-item h3 {
    color: #222;
    margin-bottom: 10px;
}

.not-for-item p {
    color: #666;
    margin-bottom: 0;
}

/* Contact Section */
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #999;
    font-size: 0.95rem;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .btn-large {
        width: 100%;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-group .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-grid,
    .samples-grid,
    .audience-cards {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .phone-number .number {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .logo {
        max-width: 150px;
    }

    .footer-logo-img {
        max-width: 120px;
    }
}

.legal-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.7;
}

.legal-page h1 {
  margin-bottom: 20px;
  color: #222;
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
}

.legal-page p {
  margin-bottom: 15px;
  color: #555;
}