/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Livvic', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #014E56;
}

/* Header Styles */
.header {
    background-color: #014E56;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F67E7E;
}

.contact-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ffffff;
    color: #014E56;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    flex-wrap: nowrap;
}

.hero-text {
    flex: 0 0 45%;
    max-width: 45%;
}

.hero-text h2 {
    font-size: 6rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.highlight {
    color: #F67E7E;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.line-decoration2 {
    width: 50px;
    height: 4px;
    background-color: #79C8C7;
    margin-bottom: 3rem;
}

.hero-graphics {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.circle-graphic {
    width: 150px;
    height: 150px;
    background-color: #F67E7E;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.lines-graphic {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: 
        linear-gradient(45deg, #79C2D0 2px, transparent 2px),
        linear-gradient(-45deg, #79C2D0 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.6;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    display: inline-block;
}

.line-decoration {
    width: 50px;
    height: 4px;
    background-color: #F67E7E;
    margin-bottom: 3rem;
}

.features-header h3 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
}

.features-list {
    max-width: 600px;
    margin-left: auto;
    float: right;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #F67E7E;
}

.feature-content p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h3 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 4rem;
}

.testimonials-flex {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    background-color: #002529;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 2rem;
    font-size: 4rem;
    color: #79C2D0;
    font-weight: bold;
}

.testimonial-card p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #F67E7E;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #79C2D0;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    font-style: normal;
}

/* CTA Section */
.cta {
    background-color: #F67E7E;
    padding: 4rem 2rem;
    text-align: center;
    color: #014E56;
}

.cta h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.cta .contact-btn {
    background-color: transparent;
    border: 2px solid #014E56;
    color: #014E56;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.cta .contact-btn:hover {
    background-color: #014E56;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #002529;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: start;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F67E7E;
}

.footer-links {
    display: flex;
    gap: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F67E7E;
}

.footer-contact p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #F67E7E;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #79C2D0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #014E56;
    opacity: 0.8;
}
