body {
    background-color: #343434;
    color: #B3B2B7;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4 {
    color: #FFFFFF;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.title-section {
    padding: 3rem 1rem;
    margin-bottom: 0;
}

.title-section h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.title-section .lead {
    color: #FFFFFF;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 0rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.description-text {
    color: #B3B2B7;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 200;
    text-align: left;
    margin-bottom: 0.5rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.description-list {
    color: #B3B2B7;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    text-align: left;
}

.description-list li {
    margin-bottom: 0.5rem;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    background-color: #2c2c2e;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.project-feature-card {
    background-color: #2c2c2e;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover,
.project-feature-card:hover {
    transform: translateY(-5px);
}

.project-feature-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.feature-card h3,
.project-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.feature-card p,
.project-feature-card p {
    margin: 0;
    font-size: 1rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.server-image {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.server-image:hover {
    transform: scale(1.02);
}

.main-card {
    background-color: #2c2c2e;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main-card:hover {
    transform: translateY(-5px);
}

.form-label {
    color: #FFFFFF;
    font-weight: 500;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.form-control, .form-select {
    background-color: #343434;
    border: 1px solid #B3B2B7;
    color: #B3B2B7;
}

.form-control:focus, .form-select:focus {
    background-color: #343434;
    border-color: #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.form-range::-webkit-slider-thumb {
    background: #FFFFFF;
}

.form-range::-webkit-slider-runnable-track {
    background: #B3B2B7;
}

.btn-primary {
    background-color: transparent;
    color: #B3B2B7;
    border: 1px solid #B3B2B7;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    text-align: center;
    margin-bottom: 1rem;
    outline: none;
}

.btn-primary:hover {
    background-color: #B3B2B7;
    color: #2c2c2e;
    transform: translateY(-2px);
    outline: none;
    border: none;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus:active {
    background-color: #B3B2B7 !important;
    color: #2c2c2e !important;
    border-color: #B3B2B7 !important;
    box-shadow: none !important;
}

/* New button style for project development and contact buttons */
.btn:not(.btn-primary) {
    background-color: #B3B2B7;
    color: #2c2c2e !important;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    text-align: center;
    margin-bottom: 1rem;
}

.btn:not(.btn-primary):hover {
    background-color: #374151;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.result-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #343434;
    margin: 0.5rem;
    transition: transform 0.3s ease;
}

.result-item h4 {
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.result-item p {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: #B3B2B7;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-card {
    animation: fadeIn 0.8s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Range Slider Styling */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #B3B2B7;
    outline: none;
    margin: 0.5rem 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.rack-value-display {
    background-color: #2c2c2e;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    min-width: 2.5rem;
    text-align: center;
    border: 1px solid #B3B2B7;
}

/* Results Animation */
#results {
    opacity: 0;
    transform: translateY(20px);
    display: none;
    margin-top: 2rem;
}

#results.visible {
    opacity: 1;
    transform: translateY(0);
    display: block !important;
}

.result-card {
    background-color: #2c2c2e;
    border: none;
    margin-top: 2rem;
}

.form-control::placeholder {
    color: #B3B2B7;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: #B3B2B7;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #B3B2B7;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #B3B2B7;
    opacity: 1;
}

.form-control:-moz-placeholder {
    color: #B3B2B7;
    opacity: 1;
} 