@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
}
.header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .header__title {
    font-size: 2rem;
  }
}
.header__subtitle {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 400;
}
@media (max-width: 768px) {
  .header__subtitle {
    font-size: 1rem;
  }
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .card {
    padding: 1.5rem;
  }
}

.form-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.upload-area {
  border: 2px dashed #e2e8f0;
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8fafc;
}
.upload-area:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.02);
}
.upload-area.drag-over {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}
.upload-area .upload-icon {
  color: #64748b;
  margin-bottom: 1rem;
}
.upload-area .upload-text {
  color: #64748b;
  font-size: 1rem;
}

.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.option-group .option-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-option {
  flex: 1;
  min-width: 120px;
  position: relative;
  cursor: pointer;
}
.radio-option input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio-option input[type=radio]:checked + .radio-label {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}
.radio-option .radio-label {
  display: block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}
.radio-option .radio-label:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}

.specifications {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}
.specifications .spec-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}
.specifications .spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.specifications .spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.specifications .spec-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}
.specifications .spec-value {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 600;
}

.preview-section {
  margin-top: 2rem;
}
.preview-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.preview-container {
  margin-bottom: 1.5rem;
}
.preview-container .image-wrapper {
  max-height: 500px;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}
.preview-container .image-wrapper img {
  max-width: 100%;
  display: block;
}

.result-section {
  margin-top: 2rem;
}
.result-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.result-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .result-container {
    grid-template-columns: 1fr;
  }
}
.result-container .result-preview {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-container .result-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.result-container .result-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.result-container .result-info .result-text {
  font-size: 1.125rem;
  color: #10b981;
  font-weight: 600;
}
.result-container .result-info .result-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.result-container .result-info .stat-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}
.result-container .result-info .stat-item .stat-label {
  color: #64748b;
  font-weight: 500;
}
.result-container .result-info .stat-item .stat-value {
  color: #1e293b;
  font-weight: 600;
}

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
  }
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: #3b82f6;
  color: white;
}
.btn-primary:hover:not(:disabled) {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-secondary {
  background: transparent;
  color: #64748b;
  border: 2px solid #e2e8f0;
}
.btn-secondary:hover:not(:disabled) {
  border-color: #64748b;
  color: #1e293b;
}

.info-section {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
@media (max-width: 768px) {
  .info-section {
    padding: 1.5rem;
  }
}
.info-section .info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
}
.info-section .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.info-section .info-card {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}
.info-section .info-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}
.info-section .info-list {
  list-style: none;
}
.info-section .info-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #64748b;
}
.info-section .info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.footer {
  text-align: center;
  padding: 2rem 0;
  color: #64748b;
  font-size: 0.875rem;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.loading-overlay .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-overlay .loading-text {
  color: white;
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.cropper-container {
  border-radius: 0.75rem;
}

.cropper-view-box {
  outline: 2px solid #3b82f6;
}

/*# sourceMappingURL=style.css.map */


/* FAQ Section Styles */
.faq-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.faq-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1e293b;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Footer Navigation Styles */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: #3b82f6;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

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

/* Content Section Spacing */
.info-section article {
  margin-bottom: 3rem;
}

.info-section article h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.info-section article h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #1e293b;
}

.info-section article h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #334155;
}

.info-section article p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.25rem;
}

.info-section article ul,
.info-section article ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.info-section article ul li,
.info-section article ol li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 0.75rem;
}

.info-section article ul li strong,
.info-section article ol li strong {
  color: #1e293b;
  font-weight: 600;
}

/* Content Page Styles */
.content-section {
  padding: 0;
}

.content-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.3;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #1e293b;
}

.content-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #334155;
}

.content-section p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.25rem;
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section ul li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 0.75rem;
}

.content-section ul li strong {
  color: #1e293b;
  font-weight: 600;
}



/* Main Navigation Styles */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a:hover {
  color: #3b82f6;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

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

@media (max-width: 768px) {
  .main-nav {
    gap: 1rem;
  }
  
  .main-nav a {
    font-size: 0.875rem;
  }
}

.logo {
  text-align: center;
}

.logo a:hover {
  opacity: 0.8;
}

