* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, Roboto, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #764ba2;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #764ba2;
}

.nav-links .ti-start-link {
    background: #764ba2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav-links .ti-start-link:hover {
    background: #5a3a7a;
    color: white;
    transform: translateY(-2px);
}



/* Main Content */
main {
    background: white;
}

section {
    padding: 3rem 0;
}

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

h2 {
    font-size: 2.5rem;
    color: #764ba2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-grid-why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card h3 {
    color: #764ba2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-steps-consult {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    color: #764ba2;
    margin-bottom: 1rem;
}

.faq-section {
    background: #f8f9fa;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #764ba2;
    color: white;
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #5a3a7a;
}

.faq-answer {
    padding: 1rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links .threatenrich-link {
    background: #764ba2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav-links .threatenrich-link:hover {
    background: #5a3a7a;
    color: white;
    transform: translateY(-2px);
}

#home.hero {
    background: #2c3e50;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

#home.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
}

#home.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

#home.hero .tagline {
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.9;
    color: white;
}

.cta-button {
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    margin-top: 1.4em;
    margin-bottom: 0em;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

main {
    padding: 3rem 0;
}

h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #3498db;
}

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

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #555;
    line-height: 1.8;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.process-section {
    background: #f8f9fa;
}

.step {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: #3498db;
}

.step h3 {
    color: #2c3e50;
}

.step p {
    color: #555;
}

.cta-section {
    background: #2c3e50;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.cta-button {
    background: #3498db;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: #2980b9;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

footer {
    background: #1a252f;
}

footer p {
    color: white;
}

.footer-link a {
    color: #3498db;
    text-decoration: none;
    margin-top: 0.5rem;
}



@media (max-width: 768px) {
    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

}

#contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: bold;
    text-align: left;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .cta-button {
    width: auto;
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.te-text[data-text-fill] {
    display: inline-block;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: max(0em, calc(calc(1.3em - var(line-height, 1.3em)) / 2));
    margin: min(0em, calc(calc(1.3em - var(line-height, 1.3em)) / -2));
    text-transform: uppercase;
    text-align: center;
    color: rgb(255, 255, 255);
}

#home.hero h2.te-byline {
    font-size: 16px;
    letter-spacing: 0.8em;
    margin-bottom: 2rem;
    margin-top: -2.5rem;
}

#home.hero h1.te-title {
    font-size: 100px;
    font-weight: 800;
    line-height: 1.6em;
    letter-spacing: 0.1em;
    margin: 0;
    padding-bottom: 0px;
    margin-top: -3.2rem;
    padding-top: 0px;
}