/*
Theme Name: Innfinity
Theme URI: https://innfinity.com
Author: Your Name
Author URI: https://innfinity.com
Description: A custom WordPress theme for Innfinity
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: innfinity
*/

:root {
    --primary-color: #0c647d;
    --primary-light: #1389a8;
    --secondary-color: #f8a13f;
    --accent-color: #e74c3c;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white-color: #fff;
    --gray-color: #f9f9f9;
    --success-color: #27ae60;
}

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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header & Navigation */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--secondary-color);
}

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

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.contact-phone {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-phone i {
    margin-right: 8px;
}

.contact-phone:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background-color: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    min-width: 160px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    display: block;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e69229;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white-color);
}

.btn-outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: #c0392b;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    width: 70%;
    height: 3px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 15%;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 15px auto 0;
}

/* Problems Section */
.problems {
    background-color: var(--light-color);
}

.problems-intro {
    text-align: center;
    margin-bottom: 50px;
}

.problems-intro h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.problems-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.problem-icon i {
    color: var(--white-color);
}

.problem-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Solutions Section */
.solutions {
    background-color: var(--white-color);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.solution-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.solution-image {
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.solution-item:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 25px;
}

.solution-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.solution-content p {
    color: #666;
    margin-bottom: 20px;
}

.solution-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon {
    color: var(--success-color);
    margin-right: 10px;
}

.feature-icon i {
    color: var(--white-color);
}

/* Results Section */
.results {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/results-bg.jpg') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.results-content {
    position: relative;
    z-index: 1;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.result-item {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.result-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.result-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    position: relative;
}

.result-header h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.result-type {
    font-size: 0.9rem;
    opacity: 0.8;
}

.result-body {
    padding: 25px;
}

.result-description {
    margin-bottom: 20px;
    color: #555;
}

.result-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.result-stat {
    flex: 1;
    min-width: 100px;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.stat-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Process Section */
.process {
    background-color: var(--white-color);
}

.process-grid {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    position: relative;
    border-bottom: 1px dashed #ddd;
}

.process-item:last-child {
    border-bottom: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
}

.process-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-item {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
}

.pricing-item.popular {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1;
}

.pricing-item:hover {
    transform: translateY(-10px);
}

.pricing-item.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 30px 20px;
    text-align: center;
}

.pricing-item.popular .pricing-header {
    background-color: var(--secondary-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.pricing-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 10px;
}

.pricing-cta {
    text-align: center;
    padding: 0 30px 30px;
}

.pricing-note {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/contact-bg.jpg') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.contact-details i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1rem;
}

.contact-form {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(12, 100, 125, 0.1);
}

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

.contact-form .wpcf7-submit {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.contact-form .wpcf7-submit:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
    color: var(--white-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--white-color);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Animation Classes */
.fadeIn, .fadeInUp, .fadeInLeft, .fadeInRight {
    opacity: 0;
    transition: all 1s ease;
}

.fadeIn {
    opacity: 0;
}

.fadeInUp {
    opacity: 0;
    transform: translateY(30px);
}

.fadeInLeft {
    opacity: 0;
    transform: translateX(-30px);
}

.fadeInRight {
    opacity: 0;
    transform: translateX(30px);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .contact-phone {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.4;
        padding: 0 20px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 25px;
        line-height: 1.5;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-item.popular {
        transform: scale(1);
    }
    
    .pricing-item.popular:hover {
        transform: translateY(-10px);
    }
    
    .solution-grid,
    .results-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-item,
    .result-item,
    .pricing-item {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .process-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        border-bottom: none;
    }
    
    .process-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.5;
        padding: 0 15px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 20px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-item {
        width: 80%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 3px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .problems-intro h2 {
        font-size: 1.6rem;
    }
    
    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-item:not(:last-child)::after {
        display: none;
    }
    
    .process-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        padding: 0 12px;
        line-height: 1.4;
        letter-spacing: -0.01em;
    }
    
    .hero p {
        font-size: 0.95rem;
        padding: 0 15px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        padding: 0 10px;
    }
    
    .stat-item {
        width: 90%;
        padding: 10px 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .result-stats {
        flex-direction: column;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin: 40px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-center .btn {
    display: inline-block;
    min-width: 300px;
    max-width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-center .btn {
        min-width: 250px;
        width: 90%;
    }
}

@media (max-width: 576px) {
    .cta-center .btn {
        min-width: 200px;
        width: 100%;
    }
} 