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

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFC700;
    --light-yellow: #FFF4CC;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-gray: #666666;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo i {
    color: var(--primary-yellow);
    font-size: 28px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-yellow);
}

/* Button Styles */
.btn-primary-small {
    background-color: var(--primary-yellow);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-yellow);
}

.btn-primary-small:hover {
    background-color: var(--black);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.btn-primary, .btn-primary-large {
    background-color: var(--primary-yellow);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary-yellow);
}

.btn-primary:hover, .btn-primary-large:hover {
    background-color: var(--black);
    color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-black {
    background-color: var(--black);
    color: var(--primary-yellow);
    border: 2px solid var(--black);
}

.btn-black:hover {
    background-color: var(--primary-yellow);
    color: var(--black);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--black);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-yellow) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--black);
    color: var(--primary-yellow);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--black);
}

.highlight {
    color: var(--black);
    position: relative;
}

.highlight-yellow {
    color: var(--black);
    background: linear-gradient(120deg, var(--primary-yellow) 0%, var(--primary-yellow) 100%);
    background-size: 100% 40%;
    background-repeat: no-repeat;
    background-position: 0 85%;
    padding: 0 10px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Apply Form */
.apply-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    border: 3px solid var(--primary-yellow);
}

.apply-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--black);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.apply-form input,
.apply-form select {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.apply-form input:focus,
.apply-form select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.apply-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 15px;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--black);
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

/* Products Section */
.products {
    background-color: var(--white);
}

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

.product-card {
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

.product-card.featured {
    border: 3px solid var(--primary-yellow);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-yellow) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black);
    color: var(--primary-yellow);
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--black);
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--black);
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.product-features li {
    padding: 10px 0;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--primary-yellow);
    font-size: 16px;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-gray);
}

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

.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--black);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--black);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories {
    background-color: var(--white);
    padding: 100px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.story-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 30px;
    text-align: center;
}

.story-stat {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.story-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--black);
}

.story-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Requirements Section */
.requirements {
    background-color: var(--light-gray);
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 60px;
}

.requirements-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 500px;
}

.req-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.requirements-cards {
    display: flex;
    align-items: center;
    height: 100%;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.requirement-card {
    background: linear-gradient(135deg, var(--black) 0%, var(--medium-gray) 100%);
    color: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--black);
}

.requirement-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.requirement-card p {
    color: var(--light-yellow);
    font-size: 14px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.cta-box h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--black);
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--medium-gray);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--black);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
}

.author-name {
    font-weight: 700;
    color: var(--black);
}

.author-business {
    font-size: 14px;
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(20px); }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.contact-hero-badge i {
    font-size: 16px;
}

.contact-hero h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-time {
    color: var(--primary-yellow);
    position: relative;
    display: inline-block;
}

.contact-lead {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 40px;
}

.contact-lead strong {
    color: var(--primary-yellow);
    font-weight: 700;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--primary-yellow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.benefit-icon-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.benefit-icon-small i {
    color: var(--black);
    font-size: 18px;
}

.benefit-item h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
    line-height: 1.5;
}

.requirements-compact {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.requirements-compact h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.requirements-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.req-item i {
    width: 32px;
    height: 32px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 14px;
    flex-shrink: 0;
}

.req-item span {
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--black);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--black);
}

.contact-item a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-card-highlight {
    background: linear-gradient(135deg, var(--black) 0%, var(--medium-gray) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.contact-card-highlight i {
    font-size: 60px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.contact-card-highlight h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-card-highlight p {
    color: var(--light-yellow);
    margin-bottom: 30px;
    font-size: 16px;
}

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

.contact-form-card {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
}

.form-card-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-card-header h3 {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 800;
}

.form-card-header p {
    color: var(--text-gray);
    font-size: 15px;
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

.contact-form-card label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-form-card label i {
    color: var(--primary-yellow);
    font-size: 14px;
}

.contact-form-card input,
.contact-form-card select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background-color: var(--white);
    color: var(--black);
}

.contact-form-card input::placeholder {
    color: #999;
}

.contact-form-card select {
    color: var(--black);
    cursor: pointer;
}

.contact-form-card select option {
    background-color: var(--white);
    color: var(--black);
}

.contact-form-card input:focus,
.contact-form-card select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    background-color: var(--white);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit span,
.btn-submit i {
    position: relative;
    z-index: 1;
}

.form-security {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-security i {
    color: #4CAF50;
    font-size: 12px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo .logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    color: var(--primary-yellow);
    font-size: 28px;
}

.footer-column p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 11px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.web-design {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
}

.web-design a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
}

.web-design a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .product-grid,
    .benefits-grid,
    .testimonials-grid,
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-grid,
    .benefits-grid,
    .testimonials-grid,
    .requirements-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero h2 {
        font-size: 32px;
    }
    
    .contact-lead {
        font-size: 18px;
    }
    
    .requirements-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 35px 25px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .apply-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }
    
    .contact-hero h2 {
        font-size: 28px;
    }
    
    .contact-hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-card-header h3 {
        font-size: 26px;
    }
}
