header { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background-color: var(--tg-white); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); position: sticky; top: 0; z-index: 1000; }
.logo { height: 50px; width: auto; max-width: 150px; }
nav { display: flex; gap: 40px; align-items: center; }
nav a { text-decoration: none; color: var(--tg-black); font-weight: 600; font-size: 1rem; transition: color 0.3s ease; }
nav a:hover { color: var(--tg-red); }
.cta-button { background-color: var(--tg-red); color: var(--tg-white); padding: 12px 28px; border-radius: 8px; border: none; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; }
.cta-button:hover { background-color: #d62a2a; }
.outline-button { background-color: transparent; color: var(--tg-red); padding: 12px 28px; border-radius: 8px; border: 2px solid var(--tg-red); font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.outline-button:hover { background-color: var(--tg-red); color: var(--tg-white); }
section#hero { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 120px 40px; background: linear-gradient(135deg, var(--tg-light-bg) 0%, var(--tg-white) 100%); text-align: center; }
h1 { font-size: 3.5rem; color: var(--tg-black); font-weight: 700; margin-bottom: 30px; line-height: 1.2; }
h1 span { color: var(--tg-red); }
.subheadline { font-size: 1.3rem; color: var(--tg-dark-gray); max-width: 700px; margin-bottom: 50px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.services-section { padding: 100px 40px; background-color: var(--tg-white); }
.section-title { font-size: 2.5rem; color: var(--tg-black); font-weight: 700; text-align: center; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.service-card { background-color: var(--tg-block-bg); padding: 40px 30px; border-radius: 8px; border-left: 4px solid var(--tg-red); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.service-card h3 { font-size: 1.5rem; color: var(--tg-black); font-weight: 700; margin-bottom: 15px; }
.service-card p { color: var(--tg-dark-gray); line-height: 1.7; }
.network-section { padding: 100px 40px; background-color: var(--tg-light-bg); }
.network-content { max-width: 900px; margin: 0 auto; text-align: center; }
.network-content p { font-size: 1.1rem; color: var(--tg-dark-gray); margin-bottom: 40px; line-height: 1.7; }
.network-badge { display: inline-block; background-color: var(--tg-red); color: var(--tg-white); padding: 15px 30px; border-radius: 50px; font-size: 1.1rem; font-weight: 600; margin-bottom: 30px; }
.cta-section { padding: 100px 40px; background-color: var(--tg-white); text-align: center; }
.cta-section h2 { font-size: 2.2rem; color: var(--tg-black); font-weight: 700; margin-bottom: 30px; }
.cta-section p { font-size: 1.1rem; color: var(--tg-dark-gray); margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
footer { background-color: var(--tg-black); color: var(--tg-white); padding: 60px 40px 30px 40px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.footer-section p { color: #cccccc; margin-bottom: 10px; line-height: 1.6; }
.footer-section a { color: #cccccc; text-decoration: none; transition: color 0.3s ease; }
.footer-section a:hover { color: var(--tg-red); }
.social-links { display: flex; gap: 15px; margin-top: 15px; }
.social-links a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background-color: rgba(255, 255, 255, 0.1); border-radius: 50%; transition: background-color 0.3s ease; }
.social-links a:hover { background-color: var(--tg-red); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; text-align: center; color: #cccccc; }
@media (max-width: 768px) { 
    header {width: 100%; padding: 10px 20px;}
    .logo { height: 40px; width: auto; max-width: 120px; }
    nav a { font-size: 0.9rem; }
    #quote-button {padding: 12px 28px; border-radius: 8px; border: none; font-size: 0.9rem; }
    /*
    header { flex-direction: column; padding: 15px 20px; gap: 15px; } 
    nav { flex-direction: column; gap: 15px; width: 100%; text-align: center; } */
    a:nth-child(1) { display: none; }
    a:nth-child(2) { display: none;}
    h1 { font-size: 2rem; } .subheadline { font-size: 1rem; padding: 0 10px; } 
    .services-grid { grid-template-columns: 1fr; gap: 20px; } 
    section#hero { padding: 60px 20px; } 
    .services-section { padding: 60px 20px; } 
    .network-section { padding: 60px 20px; } 
    .cta-section { padding: 60px 20px; } 
    .hero-buttons { flex-direction: column; gap: 15px; } 
    .cta-button { width: 100%; } 
    .outline-button { width: 100%; } 
    footer { padding: 40px 20px 20px 20px; } 
    .footer-content { grid-template-columns: 1fr; gap: 20px; } 
    .section-title { font-size: 1.8rem; }
}
