* {
    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;
}
/* Header Styles */
.exodus-header {
    background-color: #1a1a2e;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.exodus-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.exodus-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}
.exodus-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}
.exodus-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
.exodus-nav a:hover {
    color: #dc3545;
}
.exodus-contact-btn {
    background-color: #dc3545;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.exodus-contact-btn:hover {
    background-color: #c82333;
    color: white;
}
/* Footer Styles */
.exodus-footer {
    background-color: #1a1a2e;
    color: white;
    padding: 40px 40px 20px;
}
.exodus-footer-container {
    max-width: 1400px;
    margin: 0 auto;
}
.exodus-footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 30px;
}
.exodus-footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}
.exodus-footer-section ul {
    list-style: none;
}
.exodus-footer-section ul li {
    margin-bottom: 10px;
}
.exodus-footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.exodus-footer-section a:hover {
    color: white;
}
.exodus-footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .exodus-header {
        padding: 15px 20px;
    }
    .exodus-nav {
        display: none;
    }
    .exodus-footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
.exodus-hero {
    background: linear-gradient(135deg, #4a1a6b 0%, #2d1147 100%);
    background-image: url('/themes/inabata/img/business/img-exodus-topbackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
}
.exodus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 17, 71, 0.7);
    z-index: 1;
}
.exodus-hero .acms-container {
    position: relative;
    z-index: 2;
}
.exodus-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.exodus-hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.exodus-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.exodus-btn:hover {
    background-color: #c82333;
    color: white;
}
.exodus-section {
    padding: 60px 20px;
}
.exodus-section-alt {
    background-color: #f8f9fa;
}
.exodus-product {
    margin-bottom: 60px;
}
.exodus-product-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .exodus-product-flex {
        flex-direction: column;
    }
    .exodus-section-alt .exodus-product-flex {
        flex-direction: column-reverse;
    }
}
.exodus-product-content {
    flex: 1;
    min-width: 300px;
}
.exodus-product-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.exodus-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.exodus-product h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}
.exodus-product h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #dc3545;
    text-transform: uppercase;
    font-weight: bold;
}
.exodus-features {
    list-style: none;
    padding: 0;
}
.exodus-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}
.exodus-features li:last-child {
    border-bottom: none;
}
.exodus-about {
    background-color: #2d1147;
    background-image: url('/themes/inabata/img/business/img-exodus-secondbackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 20px;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.exodus-about .acms-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
}
.exodus-about-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-radius: 8px;
    max-width: 700px;
    text-align: left;
    margin-left: 0;
}
@media (max-width: 768px) {
    .exodus-about .acms-container {
        justify-content: center;
    }
    .exodus-about-content {
        padding: 40px;
        max-width: 100%;
    }
}
.exodus-about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.exodus-contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.exodus-contact-center {
    text-align: center;
    padding: 40px 20px;
    max-width: 33.333%;
    margin: 0 auto;
}
.exodus-contact-center p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}
@media (max-width: 968px) {
    .exodus-contact-center {
        max-width: 100%;
    }
}
.exodus-contact-container {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
}
.exodus-contact-text {
    flex: 1;
    min-width: 300px;
}
.exodus-contact-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.exodus-contact-form {
    flex: 0.6;
    min-width: 280px;
    max-width: 400px;
}
.exodus-contact-form-wrapper {
    background-color: #e9ecef;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.exodus-contact-form-wrapper p {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
    line-height: 1.6;
}
@media (max-width: 968px) {
    .exodus-contact-container {
        flex-direction: column;
        gap: 40px;
    }
}
.exodus-form-group {
    margin-bottom: 15px;
}
.exodus-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}
.exodus-form-group input,
.exodus-form-group textarea,
.exodus-form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}
.exodus-form-group textarea {
    min-height: 80px;
    resize: vertical;
}
.exodus-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}
.exodus-checkbox input {
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}
.exodus-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.exodus-form-bottom .exodus-checkbox {
    flex: 1;
}
@media (max-width: 768px) {
    .exodus-form-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
.exodus-submit-btn {
    background-color: #dc3545;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.exodus-submit-btn:hover {
    background-color: #c82333;
}
.acms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
