* {
    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: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-primary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo-secondary {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgb(161, 26, 23);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: rgb(161 26 23);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(#d8aaaa 1px, transparent 1px),
        linear-gradient(90deg, #d8aaaa 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text {
    padding: 2rem 0;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgb(161 26 23);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b84444;
    transform: translateY(-2px);
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background-color: rgb(161 26 23);
    position: relative;
    overflow: hidden;
}

.why-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-text {
    padding: 2rem 0;
}

.why-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.why-text p {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.8;
}

.why-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(#d8aaaa 1px, transparent 1px),
        linear-gradient(90deg, #d8aaaa 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.5rem;
    color: rgb(161 26 23);
    font-weight: 600;
    margin-bottom: 1rem;
}

.services-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.service-card:nth-child(4) {
    grid-column: 2 / 3;
}

.service-card:nth-child(5) {
    grid-column: 3 / 4;
}

.service-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    width: 350px;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(206, 82, 82, 0.2);
    border-color: rgb(161 26 23);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
}


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

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Numbers Section */
.numbers-section {
    padding: 6rem 0;
    background-color: rgb(161 26 23);
    position: relative;
    overflow: hidden;
}

.numbers-header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.number-card {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.15);
}

.number-value {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.number-card:not(:last-child) .number-value::after {
    content: '+';
    margin-left: 0.2rem;
}

.number-label {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    opacity: 0.95;
}

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.clients-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(#d8aaaa 1px, transparent 1px),
        linear-gradient(90deg, #d8aaaa 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.clients-header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.clients-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Process Section */
.process-section {
    min-height: 400px;
    background-image: url('./images/success.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(161, 26, 23, 0.92), rgba(206, 82, 82, 0.2));
    z-index: 1;
}

.process-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-content > h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.process-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: rgb(161 26 23);
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(#d8aaaa 1px, transparent 1px),
        linear-gradient(90deg, #d8aaaa 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.15;
}

.contact-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.contact-subtitle a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-subtitle a:hover {
    color: #d8aaaa;
    text-decoration: none;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #fff;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: rgb(161, 26, 23);
    margin: 0;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.contact-form .btn-primary {
    background-color: #fff;
    color: rgb(161, 26, 23);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    width: 100%;
}

.contact-form .btn-primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(#d8aaaa 1px, transparent 1px),
        linear-gradient(90deg, #d8aaaa 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: testimonials-scroll 40s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex-shrink: 0;
    width: 600px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(206, 82, 82, 0.15);
    border-color: rgb(161, 26, 23);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: rgb(161, 26, 23);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    border-top: 1px solid #e5e5e5;
    padding-top: 1rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 0.95rem;
    color: rgb(161, 26, 23);
    font-weight: 500;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
        max-height: 400px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-image {
        order: -1;
        max-height: 400px;
    }

    .why-text h2 {
        font-size: 2rem;
    }

    .why-text p {
        font-size: 1.05rem;
    }

    .services-header h2 {
        font-size: 2.5rem;
    }

    .services-subtitle {
        font-size: 1.3rem;
    }

    .services-description {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .service-card:nth-child(4) {
        grid-column: 2 / 3;
    }

    .service-card:nth-child(5) {
        grid-column: 3 / 4;
    }

    .numbers-header {
        font-size: 2rem;
    }

    .number-value {
        font-size: 3rem;
    }

    .number-label {
        font-size: 1.1rem;
    }

    .clients-header {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .client-logo {
        width: 180px;
        height: 110px;
    }

    .clients-track {
        gap: 3rem;
    }

    .process-section {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .process-content > h2 {
        font-size: 2rem;
    }

    .process-content > p {
        font-size: 1.1rem;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .contact-subtitle {
        font-size: 1.3rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .testimonials-header {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        width: 450px;
        padding: 1.75rem;
    }

    .testimonials-track {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .logo-primary {
        font-size: 1.25rem;
    }

    .logo-secondary {
        font-size: 0.75rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-text p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .why-section {
        padding: 4rem 0;
    }

    .why-text h2 {
        font-size: 1.75rem;
    }

    .why-text p {
        font-size: 1rem;
    }

    .services-section {
        padding: 4rem 0;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1.2rem;
    }

    .services-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .numbers-section {
        padding: 4rem 0;
    }

    .numbers-header {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .number-value {
        font-size: 2.5rem;
    }

    .number-label {
        font-size: 1rem;
    }

    .clients-section {
        padding: 4rem 0;
    }

    .clients-header {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .client-logo {
        width: 150px;
        height: 90px;
        padding: 1rem;
    }

    .clients-track {
        gap: 2rem;
    }

    .process-section {
        padding: 3rem 0;
        background-attachment: scroll;
    }

    .process-content > h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .process-content > p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .checkbox-label {
        padding: 0.625rem;
    }

    .contact-form .btn-primary {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-header {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .testimonial-card {
        width: 85vw;
        max-width: 400px;
        padding: 1.5rem;
    }

    .testimonials-track {
        gap: 1.5rem;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-company {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background-color: rgb(161, 26, 23);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}



.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

a{
    text-decoration: none;
}

.footer-logo .logo-primary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-logo .logo-secondary {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d8aaaa;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 350px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d8aaaa;
    padding-left: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-address,
.footer-phone {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-address i,
.footer-phone i {
    color: #d8aaaa;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-phone a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: #d8aaaa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-registration {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-section {
        gap: 1rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
        gap: 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(#d8aaaa 1px, transparent 1px),
        linear-gradient(90deg, #d8aaaa 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: rgb(161, 26, 23);
    font-weight: 600;
    margin-top: 1rem;
}

.about-content-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-content-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(#d8aaaa 1px, transparent 1px),
        linear-gradient(90deg, #d8aaaa 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

.about-text-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-content h2:first-child {
    margin-top: 0;
}

.about-text-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgb(161, 26, 23);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-text-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive About Page */
@media (max-width: 968px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.3rem;
    }

    .about-text-content {
        max-width: 100%;
        padding: 0 2rem;
    }

    .about-text-content h2 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .about-text-content h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .about-text-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
    }

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

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content-section {
        padding: 4rem 0;
    }

    .about-text-content {
        padding: 0 1.5rem;
    }

    .about-text-content h2 {
        font-size: 1.75rem;
        margin-top: 2.5rem;
    }

    .about-text-content h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .about-text-content p {
        font-size: 1rem;
    }
}

/* Contact Page */
.contact-page-section {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 200px);
}

.contact-page-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(#d8aaaa 1px, transparent 1px),
        linear-gradient(90deg, #d8aaaa 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

.contact-page-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-page-wrapper h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-page-subtitle {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-form-general {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 2px solid rgba(216, 170, 170, 0.2);
}

.contact-form-general .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-general .form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form-general .form-group input,
.contact-form-general .form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-general .form-group input:focus,
.contact-form-general .form-group textarea:focus {
    outline: none;
    border-color: rgb(161, 26, 23);
    box-shadow: 0 0 0 3px rgba(161, 26, 23, 0.1);
}

.contact-form-general .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-general .btn-primary {
    background-color: rgb(161, 26, 23);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

.contact-form-general .btn-primary:hover {
    background-color: rgba(161, 26, 23, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(161, 26, 23, 0.3);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-page-section {
        padding: 4rem 0;
    }

    .contact-page-wrapper h1 {
        font-size: 2rem;
    }

    .contact-page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .contact-form-general {
        padding: 2rem 1.5rem;
    }

    .contact-form-general .btn-primary {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

