* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(180deg, #f5f5f5 0%, #fafafa 50%, #f5f5f5 100%);
}
/* Logo styling - keeps header size consistent */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain; /* Prevents distortion */
}

.footer-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* If logo still makes header larger, add this: */
.header-container {
    align-items: center;
}

.logo span {
    font-size: inherit; /* Keeps text same size as before */
    line-height: 1;
}
header {
    background: #fff;
    padding: 1.2rem 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #000;
}

.cta-btn {
    background: #20b2aa;
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #1a9891;
}

.hero {
    background: linear-gradient(135deg, #1a3a3a 0%, #2d5555 50%, #4a6b6b 100%);
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(120deg, rgba(255,140,100,0.4) 0%, transparent 40%),
        linear-gradient(240deg, rgba(100,180,255,0.4) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: Georgia, 'Times New Roman', serif;
}

.hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-family: Georgia, 'Times New Roman', serif;
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.content-text a {
    color: #20b2aa;
    text-decoration: none;
    border-bottom: 1px solid #20b2aa;
}

.content-text a:hover {
    color: #1a9891;
}

.example-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card:hover {
    background: #1a3a3a;
    border-color: #2d5555;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    z-index: 2;
}

.card-icon {
    font-size: 1.5rem;
    transition: transform 0.5s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.5s ease;
}

.card:hover .card-title {
    color: #ffffff;
}

.card-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

.card-description {
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
    color: #666;
    max-width: 500px;
    transition: color 0.5s ease;
}

.card:hover .card-description {
    color: #b0b0b0;
}

.card-arrow {
    font-size: 1.5rem;
    color: #20b2aa;
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.card:hover .card-arrow {
    transform: translateX(8px);
    color: #20b2aa;
}

.card-link {
    text-decoration: none; 
    color: inherit;       
    display: block;       
}

.card-link .card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-link:hover .card {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 6rem;
    margin-bottom: 4rem;
}

.feature {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.feature-text a {
    color: #20b2aa;
    text-decoration: none;
    border-bottom: 1px solid #20b2aa;
}

.feature-text a:hover {
    color: #1a9891;
}

.tips-section {
    border-top: 3px solid #1a1a1a;
    padding-top: 3rem;
}

.tips-intro {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    gap: 3rem;
}

.tip-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.tip-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.tip-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.tip-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.note-box {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
}

.note-box strong {
    font-weight: 600;
}

.cta-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

footer {
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
    padding: 2rem 3rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 2rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tip-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .card-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    header {
        padding: 1rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    nav {
        gap: 1.5rem;
    }
}